File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -55,20 +55,17 @@ jobs:
55
55
56
56
steps :
57
57
- 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
69
59
run : |
70
60
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 -
72
69
- name : Set up Python ${{ matrix.python-version }}
73
70
uses : actions/setup-python@v2
74
71
with :
You can’t perform that action at this time.
0 commit comments