Skip to content

Instantly share code, notes, and snippets.

@jessepinkman9900
Last active August 17, 2020 10:59
Show Gist options
  • Save jessepinkman9900/b9e7d5c9b9caa79dc5de8e507992657e to your computer and use it in GitHub Desktop.
Save jessepinkman9900/b9e7d5c9b9caa79dc5de8e507992657e to your computer and use it in GitHub Desktop.
Conda Cheatsheet

CONDA CHEATSHEET

  • create env: conda create -n <name> python=3.6
  • remove env: conda env remove -n <name>
  • list of all env: conda info -e
  • activate env: conda activate <name>
  • deactivate env: conda deactivate
  • pip list equivalent: conda list -e
  • get requirements.txt: conda list -e > requirements.txt
  • get environment.yml: conda env export > environment.yml
  • install package: conda install <package_name>
  • add conda env to jupyter notebook : python3 -m ipykernel install --user --name=<name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment