osupython / pip2

Experimental port of pip from distutils to distutils2.
http://pip2.readthedocs.org/
MIT License
18 stars 11 forks source link

Pip2 lists what packages pip has installed #57

Closed michaeta closed 12 years ago

michaeta commented 12 years ago

Update pip2 so that when pip2 freeze is ran it displays all packages installed using pip2 and pip.

njwilson commented 12 years ago

@michaeta, it looks like we are using packaging.database.get_distributions() in our freeze command. get_distributions has a use_egg_info=False default argument. Does setting this to True resolve your issue?