I\'ve installed Python 2.7.9, which comes with already bundled with pip. I\'ve check that it\'s there in the modules list.
But when I run pip install
I get
Seems like you are running pip install
from Python interactive console. Instead, you should run it from Windows console (cmd or PowerShell):
python2.exe -m pip install
Where python2.exe
is executable for Python2.7.9 (you may need to include full path to the executable file) and
is the name of package you want to install