I know how to see installed Python packages using pip, just use pip freeze
. But is there any way to see the date and time when package is installed or updated w
I was recently looking for this too. But although there are many good answers here, the real issue is that since pip is not keeping logs by default, we have to resort to using the file creation and modification times, known as ctime
and mtime
, respectively. (See MAC-times.) Unfortunately, using this method has two side effects:
However, there is a tool called pip-date that try to combine a few different methods.
pip install pip-date