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
pip freeze
pip freeze gives you all the installed packages. Assuming you know the folder:
time.ctime(os.path.getctime(file))
should give you the creation time of a file, i.e. date of when the package has been installed or updated.