Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know what packages are installed with pip

I have Python installed in Windows and used pip to install lots of things.

How can I know what packages I installed with pip?

like image 628
life_is_a_for_loop Avatar asked Feb 27 '17 11:02

life_is_a_for_loop


People also ask

How do I see what packages are installed on pip?

To do so, we can use the pip list -o or pip list --outdated command, which returns a list of packages with the version currently installed and the latest available. On the other hand, to list out all the packages that are up to date, we can use the pip list -u or pip list --uptodate command.

How do I check my pip installation history?

pip --help pip list --help pip show --help etc. Show activity on this post. should give you the creation time of a file, i.e. date of when the package has been installed or updated.

What is installed with pip?

pip is a standard package manager used to install and maintain packages for Python. The Python standard library comes with a collection of built-in functions and built-in packages.


1 Answers

pip list will list all your installed packages.

like image 138
GPX Avatar answered Sep 28 '22 11:09

GPX