title | description | created |
---|---|---|
Conda CheatSheet |
The most commonly used conda commands are given here. |
2022-10-22 |
Command | Description |
---|---|
conda create --name env_name |
Create a new environment |
conda env list |
List all available environments |
conda activate env_name |
Activate a special environment |
conda install package_name |
Installing a package |
conda info |
Checking conda version |
conda update conda |
Update conda version |
conda update package_name |
Update any install package |
Command | Description |
---|---|
conda create --name py35 python=3.5 |
Create a new environment named py35, Install python 3.5 |