

Would look like everything worked but I could not successfully import PACKAGE. I followed Kerkez's answer and have had mixed success. Then you'll have everything managed using conda.


But it usually boils down to: conda skeleton pypi PACKAGEĪlso when you have built them once, you can upload them to and just install from there. There is a git repository of example recipes on the continuum's github account. I would personally recommend the third option since it's very easy to build conda packages. (This is not that trivial if you're on Windows.)īuild your own conda packages, and manage everything with conda. Install in your environment only the python, pip and distribute packages and manage everything with pip. You can take the union of the conda list and pip freeze and manage packages that were installed using conda (that show in the conda list) with the conda package manager and the ones that are installed with pip (that show in pip freeze but not in conda list) with pip. And pip will give you the packages that were either installed using the pip installer itself or they used setuptools in their setup.py so conda build generated the egg information. Conda will only keep track of the packages it installed.
