Skip to content

Commit 4429185

Browse files
committed
add ISIS bin to end of path rather than beginning
1 parent 88a72d0 commit 4429185

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/how-to-guides/environment-setup-and-maintenance/installing-isis-via-anaconda.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ We also recommend setting:
145145

146146
1. This command sets both required variables and the PATH (fill in your `ISISDATA` location):
147147

148-
conda env config vars set ISISROOT=$CONDA_PREFIX ISISDATA=[your data path] PATH=$CONDA_PREFIX/bin:$PATH
148+
conda env config vars set ISISROOT=$CONDA_PREFIX ISISDATA=[your data path] PATH=$PATH:$CONDA_PREFIX/bin
149149

150150
1. Re-activate your isis environment.
151151
```sh
@@ -172,7 +172,7 @@ We also recommend setting:
172172

173173
Optionally, set the path variable:
174174

175-
conda env config vars set PATH=$CONDA_PREFIX/bin:$PATH
175+
conda env config vars set PATH=$PATH:$CONDA_PREFIX/bin
176176

177177
Now every time the isis environment is activated, `$ISISROOT` and `$ISISDATA` will be set to the values passed to isisVarInit.py.
178178
This does not happen retroactively, so re-activate the isis environment:
@@ -188,7 +188,7 @@ We also recommend setting:
188188
```sh
189189
export ISISROOT=[path to ISIS]
190190
export ISISDATA=[path to data]
191-
export PATH=[path to ISIS]/bin:$PATH
191+
export PATH=$PATH:[path to ISIS]/bin
192192
```
193193

194194

0 commit comments

Comments
 (0)