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
No comments:
Post a Comment