I am using pip install on a mac to get my python requirements for a django website.
I got pip from MacPorts
port install pip-2.7
Now t
After a few attempts, setting the PYTHONPATH environmental var worked.
Best way to achieve this is to add the following to the ~/.bash_profile:
export PYTHONPATH=<bogus path here>
Don't forget to open a new terminal after changing.