当我使用pip
从virtualenv
环境中安装一些包时。我得到了错误,
building 'urwid.str_util' extension
/usr/bin/clang -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -Os -w -pipe -march=native -Qunused-arguments -mmacosx-version-min=10.7 -fwrapv -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I -I/Users/dreampuf/opt/homebrew/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c source/str_util.c -o build/temp.macosx-10.7-intel-2.7/source/str_util.o
source/str_util.c:25:10: fatal error: 'Python.h' file not found
#include <Python.h>
^
1 error generated.
error: command '/usr/bin/clang' failed with exit status 1
然后,我尝试手动安装软件包。
/usr/bin/clang -fno-strict-aliasing -fno-common -dynamic -arch i386 -arch x86_64 -Os -w -pipe -march=native -Qunused-arguments -mmacosx-version-min=10.7 -fwrapv -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -I/Users/dreampuf/opt/homebrew/Cellar/python/2.7.3/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c source/str_util.c -o build/temp.macosx-10.7-intel-2.7/source/str_util.o
来自 pip 的原始命令与上述命令的不同之处在于,我删除了单个-I
参数,然后我可以编译它。
我怎样才能解决这个问题?我无法删除-I
每个编译命令的参数。