11

当我尝试使用命令在 ubuntu 13.04 上安装 Scrapy 时sudo easy_install -U Scrapy,出现以下错误:

Searching for Scrapy
Reading pypi.python.org/simple/Scrapy/
Best match: Scrapy 0.16.5
Processing Scrapy-0.16.5-py2.7.egg
Scrapy 0.16.5 is already the active version in easy-install.pth
Installing scrapy script to /usr/local/bin

Using /usr/local/lib/python2.7/dist-packages/Scrapy-0.16.5-py2.7.egg
Processing dependencies for Scrapy
Searching for Twisted>=8.0
Reading pypi.python.org/simple/Twisted/
Best match: Twisted 13.1.0
Downloading pypi.python.org/packages/source/T/Twisted/Twisted-13.1.0.tar.bz2#md5=5609c91ed465f5a7da48d30a0e7b6960
Processing Twisted-13.1.0.tar.bz2
Writing /tmp/easy_install-xYafJF/Twisted-13.1.0/setup.cfg
Running Twisted-13.1.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-xYafJF/Twisted-13.1.0/egg-dist-tmp-ybetxt
twisted/runner/portmap.c:10:20: fatal error: Python.h: No such file or directory
compilation terminated.
error: Setup script exited with error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

我也尝试pip install Scrapy了命令,但我又得到了同样的错误x86_64-linux-gnu-gcc

你能帮我在 Ubuntu 13.04 上安装 Scrapy 吗?

4

4 回答 4

17

对我来说,我安装了 python dev 但仍然没有工作(尝试安装密码学时失败),我发现这个堆栈溢出帖子说运行这个命令以保证安装所有依赖项

sudo apt-get install build-essential libssl-dev libffi-dev python-dev libxml2-dev

这对我有用

于 2014-03-11T06:26:14.040 回答
12

为了安装scrapy,你需要先安装python dev。

于 2013-07-12T09:27:33.737 回答
3

使用这个:sudo apt-get install libssl-dev

在安装scrapy之前。进而

sudo pip install scrapy --force --upgrade

于 2015-02-27T12:05:52.470 回答
1

我在尝试在 DigitalOcean 液滴上安装 Scrapy 时遇到了完全相同的问题,这不是库问题,显然它可能发生在低 RAM 盒子中,您可以通过结合 ionice + pip 来解决它:

sudo ionice -c3 pip install Scrapy
于 2014-10-05T20:27:18.460 回答