Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to know the version of pip itself

Tags:

python

pip

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.

like image 614
doniyor Avatar asked Oct 15 '14 08:10

doniyor


People also ask

Which version of Python has pip?

pip is the preferred installer program. Starting with Python 3.4, it is included by default with the Python binary installers. A virtual environment is a semi-isolated Python environment that allows packages to be installed for use by a particular application, rather than being installed system wide.


Video Answer


1 Answers

You can do this:

pip -V 

or:

pip --version 
like image 157
Bowersbros Avatar answered Oct 21 '22 19:10

Bowersbros