Python 3, easy_install, pip and pypi

Question:

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?

Asked By: Muhammad Alkarouri

||

Answers:

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

According to the pip page, pip support Python 3 since v 1.0.

Answered By: Daniel Stutzbach

There is ongoing effort to provide support for Python 3 in pip.
See Porting Pip to Python 3 thread on virtualenv mailing list or head directly to Vinay Sajip’s repo on bitbucket.org

Answered By: Piotr Dobrogost

As of version 1.0, pip supports Python 3.

Answered By: blebo

Notice that easy_install is shipped with Python 3.4 and higher

Answered By: gecco
Categories: questions Tags: ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.