我正在尝试在我的Mac上安装scipy。 (我正在运行Python 7.2)。
当我跑步时
$ pip install scipy
我收到了大量错误的表单
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ranlib: archive member: build/temp.macosx-10.5-fat-2.7/libfwrappers.a(_blas_subroutine_wrappers.o) cputype (16777223) does not match previous archive members cputype (7) (all members must match)
最后
error: Command "ranlib build/temp.macosx-10.5-fat-2.7/libfwrappers.a" failed with exit status 1
最后
Command "/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python -c "import setuptools, tokenize;__file__='/private/tmp/pip-build-6BEG2P/scipy/setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record /tmp/pip-SxKiK4-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /private/tmp/pip-build-6BEG2P/scipy
从我在网上看到的类似问题看来,这似乎是用于编译scipy(gfortran和gcc?)的一些工具不兼容的结果。
我尝试过:将我的操作系统和Xcode + devtools升级到最新版本(现在运行OSX 10.11.1和Xcode 7.7.1),升级pip(现在运行pip 7.1.2),然后安装gfortran。< / p>
我已经阅读了有关pip install scipy困难的其他问题:
但他们的问题略有不同。我会考虑重新安装gcc,如其中一个主题所示,但我不知道最好的方法。
对此问题的任何帮助或见解将不胜感激!我觉得这里有点松散,因为我甚至无法找到任何人遇到类似问题的证据,我不知道下一步该做什么。