1

I'd like to be able to see when every package was installed with pip. I've checked out this question, but the top answer makes no differentiation between installed and updated packages.

Community
  • 1
  • 1
Everyone_Else
  • 3,206
  • 4
  • 32
  • 55
  • You should check out the answer on this post: http://stackoverflow.com/questions/6600878/find-all-packages-installed-with-easy-install-pip – pjcognetta Jul 29 '16 at 15:40
  • That's not really what I'm looking for - pip freeze/list do not show when something was installed, only the version number. – Everyone_Else Jul 29 '16 at 15:43
  • 1
    Possible duplicate of [Get date and time of installation for packages installed via pip](http://stackoverflow.com/questions/30559214/get-date-and-time-of-installation-for-packages-installed-via-pip) – be_good_do_good Jul 29 '16 at 16:20
  • The accepted answer there only shows when something was last updated. I am interested in learning when it was originally installed. – Everyone_Else Jul 29 '16 at 17:06

1 Answers1

0

use command pip freeze It Outputs installed packages in requirements format. Packages are listed in a case-insensitive sorted order. Refer https://pip.pypa.io/en/stable/reference/pip_freeze/

Ajai
  • 1,049
  • 1
  • 11
  • 23