Linux下安装Twisted报错
Posted lv007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux下安装Twisted报错相关的知识,希望对你有一定的参考价值。
想要安装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
($表示普通用户,管理员用户表示#)
安装完成依赖包,就可以安装了。
以上是关于Linux下安装Twisted报错的主要内容,如果未能解决你的问题,请参考以下文章