I installed Python 3.2 on my Mac and I want to install some packages using setuptool easy_install.
Alas, the only easy_install version I have (using autocomplete command line):
easy_install easy_install-2.5 easy_install-2.6
How to install packages for Python 3.2?
Adding
I followed Thomas K's advice :
$ curl -O http://python-distribute.org/distribute_setup.py
$ python distribute_setup.py
But no luck, easy_installstill installing packages Python 2.6:
$ easy_install beautifulsoup
Searching for beautifulsoup
Best match: BeautifulSoup 3.2.0
Processing BeautifulSoup-3.2.0-py2.6.egg
How to get easy_install to extract packages Python 3.2instead?
source
share