Last active
March 2, 2018 20:23
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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