/conda_command

I note all of my simple conda command in this repo. Make this simple for understand beginner user.

MIT LicenseMIT

Conda Command

I note all of my simple conda command in this repo. Make this simple for understand beginner user. This basic command help you for change enviroment, how to use it

Create Conda Environment

conda create --name envname 

Activate Environment

conda activate envname

Check the list of Environments

conda info --envs

Deactivate the environment

conda deactivate

Delete the environment

conda env remove --name <environment_name>

To Create environment other drive

Just use prefix than path where you wanna create environment

conda create --prefix "D:\envname"
conda activate "D:\envname"