Install Packages in Python 2.7 in Mac and use that instead of Python 2.6 packages
So I just installed Python 2.7 in my Macbook Pro.
The开发者_开发知识库 problem is I installed virtualenvwrapper, pip, virtualenv and many other packages in Python 2.6 and the binaries are in /usr/local/bin.
What I want to do then is install the aforementioned packages for Python 2.7 and use them instead of the packages from Python 2.6.
How do I do this?
Install them in 2.7.
python2.7 setup.py install
精彩评论