Note: "the newest versions of python comes with pip but older version has to be installed by the user."
Before you install pip on your computer, make sure python has been installed on your computer. You can verify this by opening a command prompt terminal (CMD) on windows using search in Windows 7. Then click the Command Prompt search result.
For Windows 8.1, switch to the Start screen and type command or cmd.
In Windows 10, you can use Cortana to search for, and launch the Command Prompt terminal. Inside Cortana's search field, enter command or cmd. Then click or tap on the Command Prompt result.
Another way to launch the Command Prompt is to use the Run Window (press Win+R) on your keyboard and type in CMD, press enter or OK to open it.
In your command prompt terminal, type in
python
and what you get should look like this:
Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:42:59) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
If you get an error message like this:
python is not recognized as an internal or external command, operable program or batch file.
Then it means that python has not been installed on your computer or probably python is not saved in the path environment variable of your computer, so you cannot run Python from any location without having to constantly reference the full installation path name. Make sure to check my write-up on how to install python on windows.
To install pip, download get-pip.py via https://bootstrap.pypa.io/get-pip.py to a directory on your computer.
Note: Your browser might open the code for you, just copy and paste the python code into a fresh python IDLE (GUI), then save it as get-pip.py
After that, navigate into the directory in your command prompt window and run
python get-pip.py.
To verify a successful installation in your command prompt, navigate into C:\Python27\Scripts, then run
pip --version
you should get:
pip 9.0.1 from c:\python27\lib\site-packages (python 2.7)
By now, you have successfully installed pip on your computer, but there is one more step to go! You need to save pip in the path environment so that you can run pip from any location without having to constantly reference the full installation path name as it was earlier referenced in c:\Python27\Scripts.
Use the search on windows 7 and 8, or Cortana in windows 10 to find environment variables. Another way to get to the environment variables is by using the file explorer and locate This PC. Right click and select properties, the control panel home as shown below will open. Click the Advanced system settings.
When you click on edit the system environment variables, you should see:
When you click on environment variables, you get something like this:
Find the system variable called path, then click edit. Create a new variable, add the pip installed directory C:\Python27\Scripts into the new environment variable and click OK.
To verify the creation of a new environment variable, open your CMD terminal and run this:
pip --version
It will show you the pip version installed on your computer and you should see this:
Pip 9.0.1 from c:\python27\lib\site-packages (python 2.7).
Note: the version of the pip install might vary with time as updates are being made.
Finally, run pip freeze to verify all the packages installed with pip
The result will be:
astroid==1.4.9
autopep8==1.3.1
backports.functools-lru-cache==1.3
colorama==0.3.7
configparser==3.5.0
Django==1.8
isort==4.2.5
lazy-object-proxy==1.2.2
mccabe==0.6.1
pycodestyle==2.3.1
pylint==1.6.5
six==1.10.0
virtualenv==15.1.0
wrapt==1.10.10
yapf==0.16.1
Written by Timothy Fehintolu.
Follow on twitter @el_joft
IF YOU LIKED THE POST, THEN YOU CAN BUY ME MY FIRST COFFEE EVER, THANKS IN ADVANCE.
Top comments (10)
hi el-joft
i did your tutorial but i'm getting message down:
C:\Python27\Lib\site-packages>pip list
DEPRECATION: The default format will switch to columns in the future. You can us
e --format=(legacy|columns) (or define a format=(legacy|columns) in your pip.con
f under the [list] section) to disable this warning.
pip (9.0.1)
setuptools (38.4.0)
virtualenv (15.1.0)
wheel (0.30.0)
C:\Python27\Lib\site-packages>pip freeze
virtualenv==15.1.0
for update show message down:
C:\Python27\Scripts>python -m pip install -U pip
Requirement already up-to-date: pip in c:\python27\lib\site-packages
so
C:\Python27>python -m pip install --upgrade pip setuptools wheel
Requirement already up-to-date: pip in c:\python27\lib\site-packages
Requirement already up-to-date: setuptools in c:\python27\lib\site-packages
Requirement already up-to-date: wheel in c:\python27\lib\site-packages
i am following your tutorial but i am getting error.
Requirement already up-to-date: pip in c:\program files (x86)\paython 3.6.1\lib\site-packages
Collecting wheel
Using cached wheel-0.30.0-py2.py3-none-any.whl
Installing collected packages: wheel
[31mException:
Traceback (most recent call last):
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\basecommand.py", line 215, in main
status = self.run(options, args)
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\commands\install.py", line 342, in run
prefix=options.prefix_path,
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\req\req_set.py", line 784, in install
**kwargs
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\req\req_install.py", line 851, in install
self.move_wheel_files(self.source_dir, root=root, prefix=prefix)
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\req\req_install.py", line 1064, in move_wheel_files
isolated=self.isolated,
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\wheel.py", line 345, in move_wheel_files
clobber(source, lib_dir, True)
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\wheel.py", line 316, in clobber
ensure_dir(destdir)
File "C:\Users\ARSALA~1\AppData\Local\Temp\tmpcb1hb02_\pip.zip\pip\utils_init_.py", line 83, in ensure_dir
os.makedirs(path)
File "C:\Program Files (x86)\paython 3.6.1\lib\os.py", line 220, in makedirs
mkdir(name, mode)
PermissionError: [WinError 5] Access is denied: 'C:\Program Files (x86)\paython 3.6.1\Lib\site-packages\wheel'[0m
There is a good chance that the Python Scripts directory was already added to your PATH, when you installed Python.
Worked like a charm. Really appreciated it. Thanks to the Dev!!
you are welcome
Any text editor will do. Just make sure you have the correct file extension after saving.
Thanks, man. it worked
The "." on the end is a typo, I think.
Why is pip install not working? Assamese Tantrik
Are you getting any error?