Steps for installing scarapy on centos7
Scrapy is required to build distributed crawlers in Linux. The installation steps are as follows:
I. Configure the environment
1. Download the Anaconda installation package
Http://www.continuum.io/downloads#all
2. Find the installation package and move the installation package to the/opt folder.
Decompress and install
sh Anaconda-2.3.0-Linux-x86_64.sh
3. Download pip installation package https://pypi.python.org/pypi/pip
Decompress and install the file
tar -zxvf pip-7.1.2.tar.gz
Cd pip-7.1.2
python setup.py install
4. Download The setuptools installation package
Https://pypi.python.org/pypi/setuptools/
Decompress and install
tar -zxvf setuptools-18.3.2.tar.gz
Cd setuptools-18.3.2
python setup.py install
Then open a terminal
You can directly run the command to install scrapy.
pip install scrapy
Finished ....