我在 Mac OSX 10.8 (Mountain Lion) 上并且刚刚安装了 Python 3.2.3。
使用该版本的 python 从虚拟环境安装 pycrypto 时:
$ virtualenv --no-site-packages -p /usr/local/bin/python3.2-32 venv
$ source venv/bin/activate
$ pip install pycrypto
我得到错误:
gcc-4.2 not found, using clang instead
building 'Crypto.Hash._MD2' extension
warning: GMP or MPIR library not found; Not building Crypto.PublicKey._fastmath.
Compiling with an SDK that doesn't seem to exist: /Developer/SDKs/MacOSX10.6.sdk
Please check your Xcode installation
clang -fno-strict-aliasing -fno-common -dynamic -isysroot /Developer/SDKs/MacOSX10.6.sdk -arch i386 -arch x86_64 -isysroot /Developer/SDKs/MacOSX10.6.sdk -std=c99 -O3 -fomit-frame-pointer -Isrc/ -I/Library/Frameworks/Python.framework/Versions/3.2/include/python3.2m -c src/MD2.c -o build/temp.macosx-10.6-intel-3.2/src/MD2.o
src/MD2.c:30:10: fatal error: 'string.h' file not found
#include <string.h>
^
1 error generated.
error: command 'clang' failed with exit status 1
尝试安装加密货币时也会发生类似的事情。
从 2.4 版开始,Pycrypto 表示它支持 python 3。
我在 xcode 开发者文件夹中添加了一个符号链接:
$ sudo ln -s /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer /Developer
但该文件夹中存在的所有内容都是 MacOSX10.7.sdk MacOSX10.8.sdk(不是上面需要的 MacOSX10.6.sdk)。
我的系统中是否缺少任何内容?我如何告诉它使用其他 SDK 之一?