easy_install-3.2.exe 与 easy_install.exe?
对于 Python 3.2,建议使用什么:easy_install-3.2
或 easy_install
?
为什么有两个执行官?有什么区别?
还有一个问题:distribu
还是 setuptools
? setuptools
显然无法正常工作 Intel Win64/python3.2(或在撰写本文时不可用)。
For Python 3.2, What is recommended: easy_install-3.2
or easy_install
?
Why two execs? What's the difference?
One more question: distribute
or setuptools
? setuptools
is obviously not working on
Intel Win64/python3.2 (or not available as of writing this post).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅回答第一个问题。
关于
easy_install
,由于您可能安装了多个python
版本,因此您可能还安装了不同的easy_install
版本(每个python< /代码> 版本)。在这种情况下,
easy_install
将是默认版本,easy_install-XY
将是安装python-XY
新软件包的版本。Answering just to the first question.
Regarding
easy_install
, since you might have multiplepython
versions installed, you might have also differenteasy_install
versions installed (one for eachpython
version). In that case,easy_install
will be the default version andeasy_install-X.Y
will be the version to install new packages forpython-X.Y
.您可以使用 easy_install 将 Python 安装到您想要安装的位置。在大多数情况下,easy_install 和 easy_install-3.2 都是同一个程序,并安装到同一个 Python 安装中。
你可以在不同的地方安装相同版本的Python,那么你需要从正确的地方运行easy_install。您还可以在一个地方安装多个版本的Python,然后您需要使用正确的版本。
始终优先使用“分发”而不是“安装工具”。
You use the easy_install that is for the installation of Python where you want to install it. In most cases, both easy_install and easy_install-3.2 will be the same program and install to the same installation of Python.
You can install the same version of Python in different places, then you need to run the easy_install from the right place. You can also install several versions of Python in one place, and then you need to use the right version.
Always use Distribute in preference to Setuptools.