Last active
May 16, 2018 03:00
-
-
Save gchavez2/c08542f94168284786fc5b7f44ed4402 to your computer and use it in GitHub Desktop.
Installing conda (Python Anaconda)
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
conda info --envs | |
conda create --name mongo_py_env | |
source activate mongo_py_env | |
source deactivate | |
conda install <package> | |
conda install pymongo | |
conda list | |
# Delete environment | |
conda remove --name mongo_py_env --all |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment