1. 程式人生 > >Centos安裝scrapy中的坑

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