This project is archived. Its data is
read-only
.
Changes
Page history
Update SetupConda
authored
Feb 22, 2022
by
Erik von Reis
Show whitespace changes
Inline
Side-by-side
SetupConda.md
View page @
69e52f95
...
@@ -58,7 +58,16 @@ mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environmen
...
@@ -58,7 +58,16 @@ mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environmen
The exact url will depend on which environment file you wish to use.
The exact url will depend on which environment file you wish to use.
This creating will take a long time, maybe hours.
This creating may take a long time.
The name of the environment is specified in the yaml file.
### Creating an environment in a specific path
Use the --path option to create an environment in a specific path, instead of using Conda's default location.
```
mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds-py39.yaml --path /installation/path/for/environment
```
## activate the new environment
## activate the new environment
...
@@ -74,6 +83,12 @@ activate with
...
@@ -74,6 +83,12 @@ activate with
conda activate cds-py39
conda activate cds-py39
```
```
or activate by path:
```
conda activate /installation/path/to/environment
```
Enjoy!
Enjoy!
## Updating an environment
## Updating an environment
...
...
...
...