Created
June 14, 2020 13:11
-
-
Save HarshitRuwali/cc8e9bd6792061ff36055a6122b28e0e to your computer and use it in GitHub Desktop.
Some useful terminal commands for Anaconda users.
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
To activate the Anaconda environment. | |
PATH=$PATH:$HOME/anaconda/bin | |
For the base: | |
source ~/.bash_profile | |
For the loacl environment we created: | |
conda activate <name> | |
Ex: | |
conda activate python36 |
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
uploading the environment to anaconda cloud | |
conda env export -n my-environment -f my-environment.yml | |
anaconda upload my-environment.yml | |
uploading anaconda notebooks to the anaconda cloud | |
anaconda upload my-notebook.ipynb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment