Reputation: 568
I am trying to install Pillow-2.7.0-cp27-none-win32.whl I read it is necessary to use the pip to install such file extension. So I downloaded python 2.7 which already comes with pip installed. However when I try to execute the following command:
pip install Pillow-2.7.0-cp27-none-win32.whl
command prompt returns:
pip is not recognized as an internal or external command
EDIT
I tried the following solution:
'pip' is not recognized as an internal or external command
But the message result is the same
Upvotes: 0
Views: 1445
Reputation: 1
Try below steps ( I did same and problem solved)
Upvotes: 0
Reputation: 17
You can try using py -m pip install pillow in the Command Prompt/PowerShell
Upvotes: 1
Reputation: 102892
You need to add the directory containing pip.exe
to your PATH
. It is usually found in C:\<PythonInstallDir>\Scripts
, probably C:\Python27\Scripts
unless the installation method has changed recently. The method of editing your PATH
varies slightly amongst Windows versions, so Google it with your particular version if you don't already know how to do it.
Upvotes: 1