Tuesday, 12 November 2013

SCRAPY INSTALL IN LINUX MINT

Scrapy is a tool used for web - crawling

STEP 1:


Check python version in your machine

python -- version



If python is not installed, install it using

sudo apt-get install python



STEP 2: ( Install Dependencies )


Scrapy depends on two pacakages "python-setuptools" and "pythonX.X.X - dev "

NOTE: X.X.X - indicates the version Example: 2.7.3

sudo apt-get install python-setuptools python2.7.3-dev



STEP 3:


Install Scrapy using "easy_install" or  "python-pip"

To install using easy_install

easy_install scarpy



To install using python-pip

pip install scarpy



STEP 4:


To check whether it is installed correctly, enter scrapy in command line.

On successful installation you will get

Selection_002

No comments:

Post a Comment