欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ubuntu/deepin安装Scrapy

程序员文章站 2022-03-02 23:23:35
...

我使用的系统是deepin,再安装Scrapy爬虫框架的时候出现了错误,错误如下:

src/twisted/test/raiser.c:4:20: fatal error: Python.h: 没有那个文件或目录
     #include "Python.h"
                        ^
    compilation terminated.
    error: command 'x86_64-linux-gnu-gcc' failed with exit status 1

    ----------------------------------------
Command "/usr/bin/python3.5 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-zuy5kovl/Twistedtup.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-1itulxzl-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-zuy5kovl/Twisted/

百度搜索了一下发现,大部分的解决方案是添加缺少的依赖。
但是我按照他们说的并没有成功。
尝试了好多次还是不行,于是我去问了一个童鞋(大佬),他的第一句就是说Python版本对不对?
我突然发现自己安装的python库都装到了usr/local/lib/python3.5/这个文件夹下,于是我就知道问题出现的原因了。

解决方法:
1.检查Python版本

2.安装依赖:

sudo apt-get install python3-dev

或者

sudo apt-get install python-dev

详细可参考*