麻烦安装Numpy和Scipy

时间:2010-12-28 02:05:08

标签: numpy

我在numpy目录中运行python setup.py install时遇到了困难。它似乎运行正常,直到它到达权限被拒绝的文件夹。它抛出的错误是copying build/scripts.macosx-10.6-universal-2.6/f2py -> /usr/local/bin error: /usr/local/bin/f2py: Permission denied。如果有人能帮助我,我想让他好起来。感谢

环境:海湾合作委员会:i686-apple-darwin10-gcc-4.2.1 (GCC) 4.2.1 (Apple Inc. build 5664) fortran:GNU Fortran (GCC) 4.2.3 以下是我运行python setup.py build https://gist.github.com/756792

时输出结果的要点

2 个答案:

答案 0 :(得分:3)

如果您输入的sudo easy_install numpy解决了我遇到的同样问题。这可能是因为使用已在easy_install中安装了/usr/bin的Apple Mac。如果程序包尝试安装脚本,则键入sudo easy_install numpy

答案 1 :(得分:1)

显然,安装程序需要向/usr/local/bin添加脚本,而您的帐户无权执行此操作。您需要使用提升的权限运行它:sudo python setup.py install