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
 ($表示普通用户,管理员用户表示#)
 
 安装完成依赖包,就可以安装了。

原文地址:https://www.cnblogs.com/lv007/p/10851042.html

时间: 2024-10-29 19:11:38

Linux下安装Twisted报错的相关文章

linux下安装php报错configure: error: Cannot find MySQL header files under /usr/include/mysql.

linux下安装php报错configure: error: Cannot find MySQL header files under /usr/include/mysql. 2013-03-04 15:34wdjhz | 分类:服务器软件 | 浏览5318次 configure: error: Cannot find MySQL header files under /usr/include/mysql.Note that the MySQL client library is not bun

linux下安装redis报错问题。

1.使用tar -xzvf redis-2.4.5.tar.gz来解压安装包 2.使用make命令来编译Redis 如果出现错误需要查看是否缺少gcc gcc-c++ zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or directory zmalloc.h:55:2: error: #error "Newer version of jemalloc required" make[1]: *** [adlist.o]

Linux下安装oracle报错

最近在学习oracle 但是在安装的过程中出现了问题 ,自己也搞不定,请教各位大神,这个怎么弄啊? Linux 64 位 oracle 11g 第二版 配置内核参数: 创建oracle要用的文件夹: 安装oracle的依赖包 配置环境变量 结果还是出错了:

Linux下Oracle11G RAC报错:在安装oracle软件时报file not found一例

Linux下Oracle11G RAC报错:在安装oracle软件时报file notfound一例 1.现象 之前安装一切都比較顺利,安装oracle软件时,进度到30%时报错:file not found(/u01/app/oracle/product/11.2.0/db_1/owb/external/oc4j_applications/applications/WFMLRSVCApp.ear) 2.应对策略 1.  改变选择语言处.仅仅选择"English": 2.  又一次解压

debian 下安装 openldap 报错 BerkeleyDB not available 解决

debian 下安装 openldap 报错 BerkeleyDB not available 解决: apt-get install libdb-dev

linux下启动tomcat报错 Failed to get local InetAddress for VMID. This is unlikely to matter. At all. We'll add some extra randomness

INFO [localhost-startStop-1] com.mchange.v2.log.slf4j.Slf4jMLog$Slf4jMLogger$InfoLogger.log(206) | Failed to get local InetAddress for VMID. This is unlikely to matter. At all. We'll add some extra randomnessjava.net.UnknownHostException: Oracle.Linu

windows linux 下安装mysql 报1045 等错误

曾经在windows 下安装mysql 没怎么出现过问题.而在linux下安装的时候出现了一些问题,昨天在windows 安装的时候也出现了1045 错误.就个人经历来看这个问题就是 root用户password的问题,所以将解决的方式总结例如以下: 一.mysql登录报 1045 错误 mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'root'@'localhost' (us

windows linux 下安装mysql 报1045 等

以前在windows 下安装mysql 没怎么出现过问题,而在linux下安装的时候出现了一些问题,昨天在windows 安装的时候也出现了1045 错误,就个人经历来看这个问题就是 root用户密码的问题,所以将解决的方式总结如下: 一.mysql登录报 1045 错误 mysqladmin: connect to server at 'localhost' failed error: 'Access denied for user 'root'@'localhost' (using pass

解决pycharm下安装reportLab报错的问题

在利用pycharm中自带的第三方安装工具安装reportLab时提示安装失败.失败的原因是缺失第三方扩展包.经过查阅查阅资料了解到一些python的第三方扩展包是需要python-dev支持的.我装好了python-dev之后再去安装reportLab果然成功了. linux下安装python-dev方法:sudo apt-get install python-dev