Centos安装scrapy中的坑

Error1:
Could not find a version that satisfies the requirement Twisted>=13.1.0

用wget安装:

wget https://pypi.python.org/packages/source/T/Twisted/Twisted-15.2.1.tar.bz2
tar -xjvf Twisted-15.2.1.tar.bz2
cd Twisted-15.2.1
python setup.py install
Error2:
tar: bzip2:无法 exec: 没有那个文件或目录

缺少bzip2包

yum install -y bzip2

你可能感兴趣的:(安装环境)