PIP Install And Python Path
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 the problem is the pip installs the packages
Solution 1:
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.
Post a Comment for "PIP Install And Python Path"