Mac环境下Scrapy的安装

直接命令安装:

$ easy_install scrapy
从 GitHub 安装:
$ git clonehttps://github.com/scrapy/scrapy.git 
$ cd scrapy $ python setup.py install
Scrapy升级:
$ sudo pip install 

或者:

$ sudo easy_install

如果想安装指定版本:

$ sudo pip install Scrapy==1.0.0

或者:

 $ sudo easy_install scrapy==1.0.0
原文地址:https://www.cnblogs.com/zimengfang/p/10141024.html