尚未找到可行的解决方案。我的系统上有三个不同版本的Python,默认捆绑了OSX(2.7.2),2.7.3通过自制软件安装,3.3.0通过自制软件安装。运行pip install numpy
或pip install scipy
将为2.7.3版本安装它。
如何在Moutain Lion上为Python 3.3.0安装numpy和scipy?
答案 0 :(得分:1)
您需要拨打 pip3 而不是pip。 Homebrew用python3安装pip3。
我刚刚在我的OSX 10.7.5 python 3.3.0机器上试过pip3 install numpy
但它失败了。它看起来像numpy v1.6不兼容但是numpy v1.7(beta,不能通过pip3获得)。
链接:关于SO的帖子: Why does installing numpy using pip fail while building directly does not