Python – How to Check the Version of Pip

pippython

Which shell command gives me the actual version of pip I am using?

pip gives with pip show all version of modules that are installed but excludes itself.

Best Answer

You can do this:

pip -V

or:

pip --version
Related Question