Skip to content

Instantly share code, notes, and snippets.

@Sanix-Darker
Forked from fbchow/conda_cheatsheet.txt
Created November 20, 2019 16:13
Show Gist options
  • Save Sanix-Darker/4419665fca5a83de9ef47fdeca209d37 to your computer and use it in GitHub Desktop.
Save Sanix-Darker/4419665fca5a83de9ef47fdeca209d37 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