I am glad that I have several Python distributions on my system, given the tips found here .
However: I cannot get easy_install and pip install to install into the distribution associated with /usr/bin/python on Mac. They will only install modules in the distribution associated with /Library/Python/2.6/ .
This is a problem, because both my default python calls and Xcode compilation are related to /usr/bin/python .
So for example, when I try pip install appscript , I return sassy
Requirements already satisfied
But then when I open python or Xcode and try import appscript , I get
ImportError: No module named appscript
How to force install pip for installation in any distribution related to /usr/bin/python ?
source share