views:

49

answers:

1

What is the current status of easy_install, pip and the repository (pypi.python.org) with regards to Python 3.x?

Are there versions of easy_install and/or pip that can install the right versions of packages from there? Else, are they expected soon?

+1  A: 

PyPi itself supports Python 3. The distribute package provides a version of easy_install that works with Python 3.

According to the pip page, pip does not yet support Python 3.

Daniel Stutzbach