Skip to content

Instantly share code, notes, and snippets.

@uborzz
Created January 31, 2018 08:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uborzz/c0b1ea23ae7b6f94f50d3903cd0599ac to your computer and use it in GitHub Desktop.
Save uborzz/c0b1ea23ae7b6f94f50d3903cd0599ac to your computer and use it in GitHub Desktop.
anaconda basics

Basics of Anaconda environment management

Creating an environment

conda create --name myNewEnv python=x.x.x

Activating an environment

activate myNewEnv

Deactivating an environment

deactivate myNewEnv

Listing environments

conda info --envs

Removing an environment

conda remove --name myNewEnv --all

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment