Skip to content

Instantly share code, notes, and snippets.

View Dhaour9x's full-sized avatar
🏎️
https://dhaour9x.github.io/Riadh-Dhaoui/

Riadh Dhaour9x

🏎️
https://dhaour9x.github.io/Riadh-Dhaoui/
View GitHub Profile
@Dhaour9x
Dhaour9x / General Conda Commands.md
Created June 16, 2021 09:05 — forked from ctufts/General Conda Commands.md
List of commonly used commands in anaconda
  • conda info --envs : lists all environments
  • source activate <env name>: activate an environment
  • source deactivate: deactivate an environment
  • conda list : list all packages installed
  • conda create --name <env name> python=3 astroid babel : create new environment, specify version of python, and install packages
  • WINDOWS NOTE: SOURCE is not recognized. When deactivating and activating in the anaconda command prompt, skip source and just type deactivate or activate depending on what you are trying to do.
  • conda env export > environment.yml: export conda environment requirements list to a file
  • conda env remove -n ENV_NAME : delete environment