Last active
May 10, 2017 10:08
-
-
Save seiteta/3f0491a2ef849d4e2e5da431cf123b3f to your computer and use it in GitHub Desktop.
Create a new conda virtual environment
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
# Create a new virtual environment (source: https://github.com/ContinuumIO/anaconda-issues/issues/305) | |
conda create -n my-venv python=3.4 | |
source activate my-venv | |
# List all virtual environments (source: https://conda.io/docs/using/envs.html#list-all-environments) | |
conda info --envs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment