Search code examples
pythonpip

How to know the version of pip itself


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.


Solution

  • You can do this:

    pip -V
    

    or:

    pip --version