Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ git clone https://github.com/ismrmrd/ismrmrdviewer.git
cd ismrmrdviewer/
python3 -m venv venv
. venv/bin/activate
pip3 install -r requirements.txt
python3 setup.py --verbose install
deactivate
```
Expand All @@ -20,6 +21,7 @@ git clone https://github.com/ismrmrd/ismrmrdviewer.git
cd ismrmrdviewer\
python3 -m venv venv
venv\bin\activate.bat
pip3 install -r requirements.txt
python3 setup.py --verbose install
deactivate
```
Expand All @@ -33,6 +35,11 @@ You may need to manually download the test datasets in res/.
```bash
. venv/bin/activate
```
Or better yet, add this to your .bashrc profile:
```bash
alias mrdviewer="__INSERT_PATH_TO_DIR__/ismrmrdviewer/venv/bin/ismrmrdviewer"
```

### WINDOWS
```cmd
venv/bin/activate.bat
Expand Down