3

我一直在尝试使用 python 2.7 在雪豹上安装 scipy、numpy 和 scikit-learn,但到目前为止还没有成功。

我能找到的只是我无法升级到的 Lion。我成功安装了 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 版本

4

1 回答 1

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
于 2013-02-09T00:23:24.790 回答