Skip to content

Commit 423e406

Browse files
committed
update README
1 parent 40d0e32 commit 423e406

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

README.md

Lines changed: 35 additions & 2 deletions
Original file line numberDiff line numberDiff 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
6466
pip 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

69102
Clone this repository.

0 commit comments

Comments
 (0)