Skip to content

Anaconda

#TODO

Personal Experience

N/A

Tools & Software Integrations

N/A

N/A

Resources

N/A

Notes and Troubleshooting

Activate Conda Environments in the Command Line

In the terminal type conda activate <NAME OF ENVIRONMENT>.

Creating an environment from an environment.yml file

Use the terminal or an Anaconda Prompt for the following steps: 1. Create the environment from the environment.yml file:

`conda env create --name <NAME OF ENVIRONMENT> --file environment.yml`

The first line of the `yml` file sets the new environment's name.
  1. Activate the new environment: conda activate myenv
  2. Verify that the new environment was installed correctly:

    conda env list or conda info --envs

Source: https://docs.conda.io/projects/conda/en/latest/user-guide/tasks/manage-environments.html

Launch Anaconda Navigator GUI from the Command Line on Linux

  • Open a terminal window.
  • Type anaconda-navigator.