我如何安装scipy,numpy和scikit

我一直试图在python 2.7上安装scipy,numpy和scikit-learn,但没有成功。

我能找到的所有狮子都是我无法升级的。 我成功安装了python 2.7,pip,virtualenv,virtualenvwrapper和numpy。 但是当我试图安装scipy时,我得到了这个错误。

/var/folders/KU/KUY52WxPExK-Pljd3M-eV++++TM/-Tmp-//cc3jPxg5.s:3149:junk `@GOTPCREL' after expression

/var/folders/KU/KUY52WxPExK-Pljd3M-eV++++TM/-Tmp-//cc3jPxg5.s:3149:`___dso_handle@GOTPCREL(%rip)' is not a valid base/index expression

/var/folders/KU/KUY52WxPExK-Pljd3M-eV++++TM/-Tmp-//cc3jPxg5.s:3150:`__ZStL8__ioinit(%rip)' is not a valid base/index expression

/var/folders/KU/KUY52WxPExK-Pljd3M-eV++++TM/-Tmp-//cc3jPxg5.s:3151:junk `@GOTPCREL' after expression

/var/folders/KU/KUY52WxPExK-Pljd3M-eV++++TM/-Tmp-//cc3jPxg5.s:3151:`__ZNSt8ios_base4InitD1Ev@GOTPCREL(%rip)' is not a valid base/index expression

/var/folders/KU/KUY52WxPExK-Pljd3M-eV++++TM/-Tmp-//cc3jPxg5.s:3155:bad register name `%rsp'


error: Command "c++ -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -g -O2 -DNDEBUG -g -O3 -Iscipy/interpolate/src -I/Users/user/.virtualenvs/venv/lib/python2.7/site-packages/numpy/core/include -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c scipy/interpolate/src/_interpolate.cpp -o build/temp.macosx-10.6-intel-2.7/scipy/interpolate/src/_interpolate.o" failed with exit status 1

我安装了gcc和g ++ 4.2,我想我已经发现它应该是gcc,g ++ 4.0,我不知道如何安装。

我应该如何成功安装Snow Leopard的scipy,numpy和scikit-learn?

非常感谢。

编辑:我使用brew install python来安装python 2.7.3,并且我的雪豹上安装了Xcode 4.2。 以上是我在尝试安装scipy时遇到的错误。

当我看着我的/ usr / bin时,我只有g++, g++-4.2

g ++也是4.2.1版本


我只安装了Xcode 4.2,但在我的系统上设法找到了一个gcc-4.0。 不知道它是如何到达那里,但我想它与Xcode 4.2一起。

因此,在安装旧版本的Xcode之前,您可能需要检查在此位置是否有gcc-4.0:

/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/

我所做的只是运行这个:

export CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.0
export CXX=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/g++-4.0
export ARCHFLAGS='-arch i386 -arch x86_64'

...在安装scipy之前:

pip install scipy
链接地址: http://www.djcxy.com/p/87171.html

上一篇: How do I install scipy, numpy and scikit

下一篇: scipy install on mountain lion failing