Skip to content

Instantly share code, notes, and snippets.

@gchavez2
Last active May 16, 2018 03:00
Show Gist options
  • Save gchavez2/c08542f94168284786fc5b7f44ed4402 to your computer and use it in GitHub Desktop.
Save gchavez2/c08542f94168284786fc5b7f44ed4402 to your computer and use it in GitHub Desktop.
Installing conda (Python Anaconda)
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