setuptools 可以与 python 3.2.x 一起使用吗

发布于 2024-12-06 17:30:47 字数 228 浏览 0 评论 0原文

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

救星 2024-12-13 17:30:47

注意:答案已过时,Setuptools 现在适用于 Python 3。Distribute 已弃用。

setuptools 本身不适用于 Python 3。但是您可以使用 Distribute,它是 setuptools 的一个分支和替代品:

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

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

从页面底部安装distribute:

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

NOTE: Answer obsolete, Setuptools now works for Python 3. Distribute is deprecated.

Setuptools itself doesn't work on Python 3. But you can use Distribute, a fork and a drop in replacement for setuptools:

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

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

From the bottom of the page to install distribute:

curl -O http://python-distribute.org/distribute_setup.py
python distribute_setup.py
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文