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.
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.
On RHEL "pip -V" works :
For windows:
shows the version at the end of the help file.
You can do this:
or:
First, open a command prompt After type a bellow commands.
check a version itself Easily :
Form Windows:
check two things
pip2 --version and pip3 --version
because the default pip may be anyone of this so it is always better to check both.
Many people use both 2.X and 3.X python. You can use
pip -V
to show default pip version.If you have many python versions, and you want to install some packages through different pip, I advise this way: