
To remove a package from an environment: $ conda remove -name MyEnvName PackageName To add packages to your environment: $ conda install -name MyEnvName PackageNames

To remove unwanted environments: $ conda remove -name MyEnvName -all To see a list of your environments: $ conda env list To create an environment at a custom location: $ conda create -prefix=$HOME/MyEnvName python=3.8 PackageName -y By default environments are created and stored in the $HOME/.conda directory. Including the -y option lets you skip the prompt to install the package. You can include as many packages as you require separated by a space. The -name option specifies that the environment created will be named MyEnvName. To create your own custom environment: $ conda create -name MyEnvName python=3.8 FirstPackageName SecondPackageName -y Many packages are pre-installed in the global environment. To use Conda you must load an Anaconda module: $ module load anaconda

Information found here may no longer be accurate and links may no longer be available or reliable.Ĭonda is a package manager in Anaconda that allows you to create and manage multiple environments where you can pick and choose which packages you want to use. This content has been archived and is no longer maintained.
