There is better support for this right now through conda-env . You can, for example, now do:
name: sample_env channels: dependencies: - requests - bokeh>=0.10.0 - pip: - "--editable=git+https://github.com/pythonforfacebook/facebook-sdk.git@8c0d34291aaafec00e02eaa71cc2a242790a0fcc#egg=facebook_sdk-master"
It still calls pip, but now you can combine the conda and pip package specifications into a single environment.yml file.
If you want to update the root environment with this file, you need to save it to a file (for example, environment.yml ), and then run the command: conda env update -f environment.yml .
Most likely, you will want to create a new environment:
conda env create -f environment.yml (modified as suggested in the comments)
Aron Ahmadia Sep 26 '15 at 17:29 2015-09-26 17:29
source share