Last active
January 4, 2018 01:28
-
-
Save alan-ho/1305a4b87c5b14bfabdde8ec85f26910 to your computer and use it in GitHub Desktop.
List of Anaconda commands
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 virtual environments | |
| $ conda create --name <ENVIRONMENT_NAME> anaconda | |
| #To activate this environment, use: | |
| $ source activate <ENVIRONMENT_NAME> | |
| #To deactivate this environment, use: | |
| $ source deactivate | |
| #Remove an environment: | |
| $ conda remove --name <ENVIRONMENT_NAME> --all | |
| #List all environments: | |
| $ conda info --envs |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment