As I understand, Python 2.7.9 comes with Pip installed, however when I try to execute a Pip command from CMD (Windows) I get the following error:
Newer versions of Python come with py, the Python Launcher, which is always in the PATH.
py
PATH
Here is how to invoke pip via py:
pip
py -m pip install
py allows having several versions of Python on the same machine.
As an example, here is how to invoke the pip from Python 2.7:
py -2.7 -m pip install