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>
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 |