大虾居

谈笑有鸿儒,往来无白丁。

0%

怎样在Cento7上安装Twisted

scrapy项目依赖twisted,但是在centos7上直接用pip install twisted可能会安装失败。本文介绍如何在Centos7上顺利安装Twisted

step1 安装epel-release包

Centos7官方repository中没有包含python相关的包,幸运的是epel-release包含了python2相关的包。

yum install -y epel-release

step2 安装twisted依赖包

Twisted有C扩展,默认需要python-devel和GCC,可以通过yum安装

yum install -y python-pip python-devel gcc

step3 安装twisted

pip install twisted