繁体   English   中英

在安装Scrapy时,mac 10.6.8上的gcc-4.0失败了我怎么能克服这个?

[英]gcc-4.0 failed on mac 10.6.8 while installing Scrapy how can i overcome this?

我在我的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

您似乎已经安装了Xcode 4,它删除了用于构建已安装的Python 2.7的gcc-4.0 从traceback中的路径名,很可能是从python.org下载的32位Python。 使用Xcode 4,您应该尝试从python.org安装最新的用于Python 2.7的64位/ 32位OS X安装程序 然后,您可能需要重新安装已安装的任何软件包,例如Distributepip和dependencies。 根据哪个版本的Xcode 4,您可能还需要在运行pipeasy_install之前提供以下环境变量设置:

export CC=gcc

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-devepoll-dev包。 但是osx可能有一个简单的方法。

或者,您可以为您的osx寻找预编译的包。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM