Will setuptools work with python 3.2.x

Will setuptools for windows python 2.7 http://pypi.python.org/pypi/setuptools#files be compatible with the runtime of python 3.2.x. The installer cannot detect python settings during installation. Should I wait for a new release?

+7
source share
1 answer

NOTE. The answer is deprecated, now Setuptools works for Python 3. Distribution is deprecated.

Setuptools itself does not work in Python 3. But you can use Distribute, fork and drop to replace setuptools:

http://packages.python.org/distribute/

http://pypi.python.org/pypi/distribute

At the bottom of the page, install the distribution:

curl -O http://python-distribute.org/distribute_setup.py python distribute_setup.py 
+14
source

All Articles