-
Notifications
You must be signed in to change notification settings - Fork 0
Useful Conda Commands
chunglee_people edited this page Oct 7, 2022
·
2 revisions
-
conda info -e: Get the location of each environment. -
conda info --envs: List all environments. -
conda list: List all packages installed. -
conda create --name <your_env_name> python=<Python_version>: Create new environment, specify version of python, and install packages. -
conda env remove -n <your_env_name>: Delete conda environment. -
conda activate <your_env_name>: Activate an environment. -
conda deactivate <your_env_name>: Deactivate an environment.
-
conda install <package_name>: Install package in conda. -
conda uninstall <package_name>: Uninstall package in conda.
-
pip install <package_name>: Install package in pip. -
pip uninstall <package_name>: Uninstall package in pip.