Conda commands 🐍 - urcuqui/Data-Science GitHub Wiki

Conda commands

The idea of this Wiki is to have an abstract of different commands that I have been using in a data science process with Anaconda environment

Envs

By default, Anaconda has an env which its name is base, but... what is going to happen if we need to use our own env, let's see some commands to manage it.

The next command displays information about the envs that we have. conda info --envs

Once we have the list of envs available we can use one of them using the next command conda activate your_env_name

On the other hand, we can deactivate the env conda deactivate your_env_name