我在我的mac 10.6.8上使用了pip install Scrapy,我收到以下错误 有人可以帮我吗?
creating build/lib.macosx-10.3-fat-2.7/twisted/internet/iocpreactor/iocpsupport
copying twisted/internet/iocpreactor/iocpsupport/iocpsupport.c ->
build/lib.macosx-10.3-fat-2.7/twisted/internet/iocpreactor/iocpsupport
copying twisted/internet/iocpreactor/iocpsupport/winsock_pointers.c ->
build/lib.macosx-10.3-fat-2.7/twisted/internet/iocpreactor/iocpsupport
copying twisted/python/_epoll.c ->
build/lib.macosx-10.3-fat-2.7/twisted/python
copying twisted/python/_initgroups.c ->
build/lib.macosx-10.3-fat-2.7/twisted/python
copying twisted/runner/portmap.c ->
build/lib.macosx-10.3-fat-2.7/twisted/runner
copying twisted/test/raiser.c ->
build/lib.macosx-10.3-fat-2.7/twisted/test
running build_ext
gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386
-g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c conftest.c -o conftest.o
/usr/libexec/gcc/powerpc-apple-darwin10/4.0.1/as: assembler
(/usr/bin/../libexec/gcc/darwin/ppc/as or
/usr/bin/../local/libexec/gcc/darwin/ppc/as) for architecture ppc not
installed
Installed assemblers are:
/usr/bin/../libexec/gcc/darwin/x86_64/as for architecture x86_64
/usr/bin/../libexec/gcc/darwin/i386/as for architecture i386
lipo: can't open input file:
/var/folders/jk/jkTyAFDWEC8fvZts+C7Jwk+++TI/-Tmp-//ccBIdB4l.out (No
such file or directory)
gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386
-g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c conftest.c -o conftest.o
conftest.c:1:23: error: sys/epoll.h: No such file or directory
conftest.c:1:23: error: sys/epoll.h: No such file or directory
lipo: can't figure out the architecture type of:
/var/folders/jk/jkTyAFDWEC8fvZts+C7Jwk+++TI/-Tmp-//cceIymsT.out
building 'twisted.test.raiser' extension
creating build/temp.macosx-10.3-fat-2.7
creating build/temp.macosx-10.3-fat-2.7/twisted
creating build/temp.macosx-10.3-fat-2.7/twisted/test
gcc-4.0 -fno-strict-aliasing -fno-common -dynamic -arch ppc -arch i386
-g -O2 -DNDEBUG -g -O3 -I/Library/Frameworks/Python.framework/Versions/2.7/include/python2.7 -c twisted/test/raiser.c -o build/temp.macosx-10.3-fat-2.7/twisted/test/raiser.o
In file included from /usr/include/architecture/i386/math.h:626,
from /usr/include/math.h:28,
from /Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/pyport.h:312,
from /Library/Frameworks/Python.framework/Versions/2.7/include/python2.7/Python.h:58,
from twisted/test/raiser.c:4:
/usr/include/AvailabilityMacros.h:108:14: warning: #warning Building
for Intel with Mac OS X Deployment Target < 10.4 is invalid.
/usr/libexec/gcc/powerpc-apple-darwin10/4.0.1/as: assembler
(/usr/bin/../libexec/gcc/darwin/ppc/as or
/usr/bin/../local/libexec/gcc/darwin/ppc/as) for architecture ppc not
installed
Installed assemblers are:
/usr/bin/../libexec/gcc/darwin/x86_64/as for architecture x86_64
/usr/bin/../libexec/gcc/darwin/i386/as for architecture i386
lipo: can't open input file:
/var/folders/jk/jkTyAFDWEC8fvZts+C7Jwk+++TI/-Tmp-//ccNvrcyZ.out (No
such file or directory)
error: command 'gcc-4.0' failed with exit status 1
---------------------------------------- Command /Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python
-c "import setuptools;__file__='/Users/bbb/Dropbox/projects/android/continuous-integration/build/Twisted/setup.py';exec(compile(open(__file__).read().replace('\r\n',
'\n'), __file__, 'exec'))" install --single-version-externally-managed
--record /var/folders/jk/jkTyAFDWEC8fvZts+C7Jwk+++TI/-Tmp-/pip-MXEZuX-record/install-record.txt
failed with error code 1 Storing complete log in
/Users/bbb/.pip/pip.log
答案 0 :(得分:2)
您似乎已经安装了Xcode 4,它删除了用于构建已安装的Python 2.7的gcc-4.0
。从traceback中的路径名,很可能是从python.org下载的32位Python。使用Xcode 4,您应该尝试安装latest 64-bit/32-bit OS X installer for Python 2.7 from python.org。然后,您可能需要重新安装已安装的任何软件包,例如Distribute
,pip
和依赖项。根据哪个版本的Xcode 4,您可能还需要提供以下环境变量设置,然后才能运行pip
或easy_install
:
export CC=gcc
答案 1 :(得分:0)
pip安装python包。 Ofthen那些python包依赖于c libaries,它们应该由你的包管理器安装,而不是由pip安装。
查看输出中缺少一些包的头文件。我可以发现这些可能会有更多......
conftest.c:1:23: error: sys/epoll.h: No such file or directory
include/python2.7/pyport.h:312
在ubuntu上,它是一个简单的包管理器:
python-dev
和epoll-dev
个包。但是对于osx来说可能有一个简单的方法。
或者您可以为您的osx寻找预编译的包。