Conda usage¶
How To create a new environment¶
To create an environment named “myenv” with epics-base 7, run:
conda create -n myenv epics-base=7
How to activate an environment¶
Use the conda activate command followed by the environment name:
conda activate myenv
How to export an environment¶
Use the conda env export command:
conda env export -n myenv > environment.yml
How to create an environment based on an environment file¶
Use the conda env create command:
conda env create -n myenv -f environment.yml
If you omit the -n parameter, the environment name will be taken from the environment.yml file.
The command will fail if the environment already exists. You can to destroy it first by using --force.