Skip to content

Instantly share code, notes, and snippets.

@victorfsf
Last active March 28, 2016 11:37
Show Gist options
  • Save victorfsf/55b1938e6fd100bc982c to your computer and use it in GitHub Desktop.
Save victorfsf/55b1938e6fd100bc982c to your computer and use it in GitHub Desktop.
Conda environment file example
name: example
channels:
- javascript # required to install nodejs
dependencies:
- python=3.5.1
- numpy=1.9.*
- nodejs=0.10.*
- django
- pip:
- python-iprofile
- ipdb==0.9.0
- ipython==4.1.2

Installing/Updating:

$ conda install conda-env

Create the environment.yml file, then run on the same directory:

$ conda env create

Updating dependencies:

$ conda env update

To remove it, run:

$ conda env remove -n <ENV_NAME>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment