Skip to content

Instantly share code, notes, and snippets.

@byplayer
Created September 7, 2018 06:02
Show Gist options
  • Save byplayer/4ed1ffcfc2cd73c2d4ab38bd3ef159ad to your computer and use it in GitHub Desktop.
Save byplayer/4ed1ffcfc2cd73c2d4ab38bd3ef159ad to your computer and use it in GitHub Desktop.
anaconda

create environement

conda create --name myenv python=3.5 numpy=1.11.1

activate environment

source activate myenv

export env

conda env export > myenv.yaml

upload anaconda cloud

anaconda upload myenv.yaml

import env

conda env create --file myenv.yaml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment