Zope安装错误版本(easy_install和pip)

时间:2013-06-08 14:02:55

标签: python macos twisted zope egg

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

我在Mac OSX 10.8.3上。我已经四处寻找解决方案了,但我发现这个问题的唯一方法就是:easy_install with various versions of python installed, mac osx,但答案不起作用。

1 个答案:

答案 0 :(得分:1)

我建议安装Homebrew软件包管理器,然后安装python 3。

安装Homebrew:

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

安装Python 3

brew install python3

  • Pip for Python 3将通过上述命令安装为pip3。
  • easy_install因自制程序而感到沮丧,您不需要sudo使用pip3gem
  

注意,不推荐使用easy_install。我们和python / python3一起安装pip(或python3的pip3)。

source