Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to install pip on windows

I've tried installing pip on windows using instructions from https://www.liquidweb.com/kb/install-pip-windows/, (which I've listed below), but when I run pip -V, I keep getting 'pip' is not recognized as an internal or external command, operable program or batch file. Does anyone know what to do?

These were the instructions I followed:

  1. Download get-pip.py to a folder on your computer. (right clicked and selected save link as...)
  2. Open a command prompt and navigate to the folder containing get-pip.py.
  3. Run the following command: python get-pip.py
  4. Pip is now installed!

You can verify that Pip was installed correctly by opening a command prompt and entering the following command:

pip -V

like image 253
user11508332 Avatar asked Sep 16 '25 23:09

user11508332


2 Answers

I recommend you to uninstall python and then reinstall it again. In the installation window, use custom installation and check all the option which includes pip and also check to add pip to your environment variables.

like image 125
Aashrut Vaghani Avatar answered Sep 19 '25 13:09

Aashrut Vaghani


In Windows 10, you need to add pip to the PATH.

This post should solve your issue: 'pip' is not recognized as an internal or external command

like image 29
Molessia Avatar answered Sep 19 '25 14:09

Molessia