Skip to content

Instantly share code, notes, and snippets.

@p1nox
Last active August 19, 2021 22:00
Show Gist options
  • Save p1nox/14657f91534b0cff562ffaffba2ed080 to your computer and use it in GitHub Desktop.
Save p1nox/14657f91534b0cff562ffaffba2ed080 to your computer and use it in GitHub Desktop.
conda cmmd

env basics http://conda.pydata.org/docs/using/envs.html

conda create --name snowflakes biopython # --name [env_name] [package_to_install] ... [package_to_install]
conda create -n deep python=3.6.5

conda activate deep
conda deactivate
conda create --help
conda info --envs
conda remove --name deep --all

conda config --set auto_activate_base false

# zsh
export PATH="/root/miniconda3/bin:$PATH"
# check for package in anaconda.org, copy the channel name
conda install -c pandas bottleneck # -c [channel_name] [package_name]
conda install https://repo.anaconda.com/pkgs/main/osx-64/python-3.6.5-hc167b69_1.tar.bz2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment