centos安装scrapy

  1. 安装 python2.7.7 以上版本

wget " 
tar xzvf 
cd
make&make install

2.安装setuptools

wget "https://pypi.python.org/packages/source/s/setuptools/setuptools-5.4.1.tar.gz#md5=3540a44b90017cbb851840934156848e"    
tar xzvf 
cd
python2.7 setup.py install

3.本文采用: easy_install -U Scrapy

会遇到三个致命的错误:

python 错误汇总1---解决 Python.h:没有那个文件或目录 错误的方法

python 错误汇总2:致命错误: libxml/xmlversion.h:没有那个文件或目录

python错误汇总3:libxslt/xsltconfig.h:没有那个文件或目录

python错误汇总4: Package libffi was not found in the pkg-config search path.

yum install libffi-devel


解决了之后,尝试运行 scrapy 


你可能感兴趣的:(centos安装scrapy)