How do I keep track of pip-installed packages in an Anaconda (Conda) environment?

conda-env now does this automatically (if pip was installed with conda). You can see how this works by using the export tool used for migrating an environment: conda env export -n <env-name> > environment.yml The file will list both conda packages and pip packages: name: stats channels: – javascript dependencies: – python=3.4 – bokeh=0.9.2 – … Read more