Linux

如何讓“pip show”顯示模組安裝的日期和時間?

  • October 17, 2019

如何知道何時安裝了模組(例如請求)- 日期、小時和分鐘

例如 pip show 僅顯示以下詳細資訊而沒有時間

pip show  requests
---
Metadata-Version: 1.1
Name: requests
Version: 2.6.0
Summary: Python HTTP for Humans.
Home-page: http://python-requests.org
Author: Kenneth Reitz
Author-email: me@kennethreitz.com
License: Apache 2.0
Location: /usr/lib/python2.7/site-packages
Requires:

如何知道何時安裝了模組(例如請求)- 日期、小時和分鐘

pip-date可用於獲取安裝時間。

Show the installation/modification times of all your pip packages and other tools

pip-date 在 github 上

引用自:https://unix.stackexchange.com/questions/547266