1

我下载了 zope.interface 版本 4.0.5 的 python egg 并尝试使用 easy_install 然后 pip 安装它。两者都将其安装到 python 2.7,这是我计算机上的默认设置。有没有办法将它安装到python3?

我在 Mac OSX 10.8.3 上。我环顾四周寻找一些解决方案,但我发现这个问题的唯一一个是:easy_install 安装了各种版本的python,mac osx,但答案不起作用。

4

1 回答 1

1

我建议安装Homebrew包管理器,并使用它安装 python 3。

安装自制软件:

ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"

安装 Python 3

brew install python3

  • Python 3 的 Pip 将通过上述命令安装为 pip3。
  • easy_install已被自制软件贬低,您不需要使用sudowithpip3gem

注意,easy_install 已被弃用。我们将 pip(或 python3 的 pip3)与 python/python3 一起安装。

资源

于 2013-06-08T14:32:24.100 回答