在python virtualenv中使用pip安装scrapy时发生错误

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在python virtualenv中使用pip安装scrapy时发生错误相关的知识,希望对你有一定的参考价值。

系统信息 :

Ubuntu 14.10
Linux vagrant-ubuntu-trusty 3.16.0-23-generic #31-Ubuntu SMP Tue Oct 21 17:56:17 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

我首先在ubuntu中安装virtualenv

sudo pip install virtualenv
virtualenv scrapy-env
cd scrapy-env/
source bin/activate
pip install scrapy

然后我收到这个错误:

  running build_ext
    building 'twisted.test.raiser' extension
    creating build/temp.linux-x86_64-2.7
    creating build/temp.linux-x86_64-2.7/src
    creating build/temp.linux-x86_64-2.7/src/twisted
    creating build/temp.linux-x86_64-2.7/src/twisted/test
    x86_64-linux-gnu-gcc -pthread -DNDEBUG -g -fwrapv -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -D_FORTIFY_SOURCE=2 -g -fstack-protector-strong -Wformat -Werror=format-security -fPIC -I/usr/include/python2.7 -c src/twisted/test/raiser.c -o build/temp.linux-x86_64-2.7/src/twisted/test/raiser.o
    src/twisted/test/raiser.c:4:20: fatal error: Python.h: No such file or directory
     #include "Python.h"
                        ^
    compilation terminated.
    error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

    ----------------------------------------
Command "/vagrant/pyenv/scrapy-env/bin/python -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-NJKTtN/Twisted/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-_i2ueH-record/install-record.txt --single-version-externally-managed --compile --install-headers /vagrant/pyenv/scrapy-env/include/site/python2.7/Twisted" failed with error code 1 in /tmp/pip-build-NJKTtN/Twisted/

有什么建议可以帮我解决吗?

答案

您没有安装Python开发人员包。尝试安装它们

sudo apt-get install python-dev # for python2.x installs
sudo apt-get install python3-dev  # for python3.x installs

以上是关于在python virtualenv中使用pip安装scrapy时发生错误的主要内容,如果未能解决你的问题,请参考以下文章

virtualenv虚拟环境的使用

mac下Python关于venv 的使用

找不到Python pip安装模块。如何将python链接到pip位置?

Ubuntu中Python3虚拟环境的搭建

pip install libvirt-python在virtualenv中失败

在python virtualenv中使用pip安装scrapy时发生错误