Skip to content

Commit fc419b7

Browse files
committed
install mrtrix from source
1 parent 84dcb59 commit fc419b7

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -55,20 +55,17 @@ jobs:
5555

5656
steps:
5757
- uses: actions/checkout@v2
58-
# - name: Install Minconda
59-
# uses: conda-incubator/setup-miniconda@v2
60-
# with:
61-
# auto-activate-base: true
62-
# activate-environment: ""
63-
# - name: Install MRtrix via Conda
64-
# run: |
65-
# conda install -c mrtrix3 mrtrix3
66-
# conda list
67-
# mrconvert --version
68-
- name: Install mrtrix
58+
- name: Install MRtrix3 dependencies
6959
run: |
7060
sudo apt update
71-
sudo apt install mrtrix
61+
sudo apt-get install git g++ python python-numpy libeigen3-dev zlib1g-dev libqt4-opengl-dev libgl1-mesa-dev libfftw3-dev libtiff5-dev
62+
- name: Install MRtrix3 from source
63+
run: |
64+
git clone https://github.com/MRtrix3/mrtrix3.git
65+
cd mrtrix3
66+
./configure
67+
./build cmd/mrconvert
68+
cd -
7269
- name: Set up Python ${{ matrix.python-version }}
7370
uses: actions/setup-python@v2
7471
with:

0 commit comments

Comments
 (0)