Last active
November 20, 2019 16:13
-
-
Save fbchow/98ceeb02f78780e4dc488136e927ea5a to your computer and use it in GitHub Desktop.
List Conda Environments on Computer
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
# https://conda.io/docs/user-guide/tasks/manage-environments.html | |
conda create --name myenv | |
# how install a sepcific version of package | |
# https://github.com/lopatovsky/HMMs/issues/4 | |
conda install cython=0.25.2 | |
conda env list | |
source activate $MYENVNAME | |
# Problems with fish & conda? | |
https://github.com/conda/conda/issues/2611 | |
https://stackoverflow.com/questions/42871313/cannot-run-source-activate-with-conda-in-fish-shell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment