Update SetupConda authored by Erik von Reis's avatar Erik von Reis
...@@ -45,7 +45,7 @@ https://apt.ligo-wa.caltech.edu/sources/conda/environments/ ...@@ -45,7 +45,7 @@ https://apt.ligo-wa.caltech.edu/sources/conda/environments/
for an environment file that suits your needs, for example for an environment file that suits your needs, for example
``` ```
https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds-py39.yaml https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds.yaml
``` ```
## create the environment ## create the environment
...@@ -53,12 +53,12 @@ https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds-py39.yam ...@@ -53,12 +53,12 @@ https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds-py39.yam
Create the environment as with this example: Create the environment as with this example:
``` ```
mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds-py39.yaml mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds.yaml
``` ```
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 may take a long time. Creating the environment may take a long time.
The name of the environment is specified in the yaml file. The name of the environment is specified in the yaml file.
...@@ -66,7 +66,7 @@ The name of the environment is specified in the yaml file. ...@@ -66,7 +66,7 @@ The name of the environment is specified in the yaml file.
Use the --path option to create an environment in a specific path, instead of using Conda's default location. 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 mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds.yaml --path /installation/path/for/environment
``` ```
## activate the new environment ## activate the new environment
...@@ -74,13 +74,13 @@ mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environmen ...@@ -74,13 +74,13 @@ mamba env create --file https://apt.ligo-wa.caltech.edu/sources/conda/environmen
Activate the environment using the environments name, which is also the name of the environment file. For the environment created with Activate the environment using the environments name, which is also the name of the environment file. For the environment created with
``` ```
https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds-py39.yaml https://apt.ligo-wa.caltech.edu/sources/conda/environments/linux-64/cds.yaml
``` ```
activate with activate with
``` ```
conda activate cds-py39 conda activate cds
``` ```
or activate by path: or activate by path:
... ...
......