Skip to content

Instantly share code, notes, and snippets.

@fbchow
Last active November 20, 2019 16:13
Show Gist options
  • Save fbchow/98ceeb02f78780e4dc488136e927ea5a to your computer and use it in GitHub Desktop.
Save fbchow/98ceeb02f78780e4dc488136e927ea5a to your computer and use it in GitHub Desktop.
List Conda Environments on Computer
# 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