Skip to content

Instantly share code, notes, and snippets.

@mGalarnyk
Last active March 2, 2018 20:23
Show Gist options
  • Save mGalarnyk/0c3173079a50c1a68f7d6aaeb55315a5 to your computer and use it in GitHub Desktop.
Save mGalarnyk/0c3173079a50c1a68f7d6aaeb55315a5 to your computer and use it in GitHub Desktop.
Basics of environment management with Python Conda for the blog post https://medium.com/@GalarnykMichael/environment-management-with-conda-python-2-3-b9961a8a5097
python --version
# you can even add names of packages after python=3.6 like python=3.6 pandas
conda create --name subscribe python=3.6
# Remove your environment
conda env remove --name subscribe
# List your environments
conda env list
# Note. Source is NOT a windows command. Just use activate environmentName and deactivate environmentName
# to get into your new environment
source activate subscribe
# Leave your environment
source deactivate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment