Is there any way to make pip play well with multiple versions of Python? For example, I want to use pip to explicitly install things to either my s
pip
pip is also a python package. So the easiest way to install modules to a specific python version would be below
python2.7 /usr/bin/pip install foo
or
python2.7 -m pip install foo