想要安装Scrapy爬虫框架就必须安装Twisted
linux下安装Twisted
安装:$sudo pip install Twisted
报错:
error: Setup script exited with error: command ‘x86_64-linux-gnu-gcc‘ failed with exit status 1
原因缺少一依赖包
对于Python 2.x使用:
$ sudo apt-get install python-dev
对于Python 2.7使用:
$ sudo apt-get install libffi-dev
对于Python 3.x使用:
$ sudo apt-get install python3-dev
对于Python 3.4使用:
$ sudo apt-get install python3.4-dev
对于Python 3.5使用:
$ sudo apt-get install python3.5-dev
对于Python 3.6使用:
$ sudo apt-get install python3.6-dev
($表示普通用户,管理员用户表示#)
安装完成依赖包,就可以安装了。
原文地址:https://www.cnblogs.com/lv007/p/10851042.html
时间: 2024-10-29 19:11:38