How can I include channels when executing pip list
? (I’d like to see which packages were installed from pypi.) Thanks.
What makes you think that pip
remembers where a package came from?
Because conda list
shows channels. pip doesn’t have that capability then? Thanks.
Because
conda list
shows channels. pip doesn’t have that capability then? Thanks.
Conda is designed around the idea of channels, there is no similar
concept in pip. Sure you can inform pip of multiple indices, but
they may also be serving overlapping sets of packages, backup
proxies, mirrors… they’re not assumed to be distinct package sets,
nor is there any tracking of which index was followed for installing
a particular version of a package (aside from possible logs).
2 Likes