Steps to install Scrapy.
The following steps assumes that you already have python installed. To make your installation easy the steps recommend using easy_install tool.
The following steps assumes that you already have python installed. To make your installation easy the steps recommend using easy_install tool.
# Install Scrapy :
easy_install -U Scrapy
# Test your Scrapy installation
# 1. Within python interpreter, import the following batteries and there should not be any errors
>>> import zope.interface
>>> import twisted
>>> import lxml
>>> import OpenSSL
>>> import scrapy
>>> print twisted.version
[twisted, version 10.2.0]
# 2. If you need to find the version of a particular battery then use module attribute .version or .__version__ as below
print twisted.version
==> [twisted, version 10.2.0]