File tree Expand file tree Collapse file tree 1 file changed +35
-2
lines changed Expand file tree Collapse file tree 1 file changed +35
-2
lines changed Original file line number Diff line number Diff line change @@ -39,8 +39,8 @@ At the moment bidsmreye only supports python 3.8 and 3.9.
3939
4040## Install
4141
42- Better to use the docker image as there are known install issues of deepmreye on
43- Apple M1 for example but you can also ge the package from pypi if you want .
42+ Better to use the docker image as there are known install issues of deepmreye
43+ on Apple M1 for example.
4444
4545### Docker
4646
@@ -60,10 +60,43 @@ docker pull cpplab/bidsmreye:latest
6060
6161### Python package
6262
63+ You can also get the package from pypi if you want.
64+
6365``` bash
6466pip install bidsmreye
6567```
6668
69+ #### Conda installation
70+
71+ ** NOT TESTED YET**
72+
73+ To encapsulate bidsMReye in a virtual environment install with the following commands:
74+
75+ ``` bash
76+ conda create --name bidsmreye python=3.9
77+ conda activate bidsmreye
78+ pip install bidsmreye
79+ ```
80+
81+ The tensorflow dependency supports both CPU and GPU instructions.
82+
83+ Note that you might need to install cudnn first
84+
85+ ``` bash
86+ conda install -c conda-forge cudnn
87+ ```
88+
89+ If installation of [ ANTsPy] ( https://github.com/ANTsX/ANTsPy ) fails try to manually install it via:
90+
91+ <!-- may help on windows ? -->
92+
93+ ``` bash
94+ git clone https://github.com/ANTsX/ANTsPy
95+ cd ANTsPy
96+ pip install CMake
97+ python3 setup.py install
98+ ```
99+
67100### Dev install
68101
69102Clone this repository.
You can’t perform that action at this time.
0 commit comments