I've installed and have been using the Anaconda Python distribution, and I have started using the Anaconda (Conda) environment. I can use the standard conda install... command to put packages from the distribution into my environments, but to use anything outside (i.e. Flask-WTF, flask-sqlalchemy, and alembic) I need to use pip install in the active environment. However, when I look at the contents of the environment, either in the directory, or using conda list these pip installed packages don't show up.
Using pip freeze and pip list just lists every package I've ever installed.
Is there a way to keep track of what is in each of my Anaconda envs (both pip and conda installed)?

所有评论(0)