Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andresmillang/34b61297c6c03fa811415f47b3ffbaa9 to your computer and use it in GitHub Desktop.
Save andresmillang/34b61297c6c03fa811415f47b3ffbaa9 to your computer and use it in GitHub Desktop.
Installing scrapy in CentOS
# Install deltarpm to reduce the size of download
yum install -y deltarpm
yum install -y python-pip
# Scrapy Pre-Requisites
yum install -y gcc libffi-devel python-devel openssl-devel
yum install -y libxslt-devel libxml++-devel libxml2-devel
pip install lxml incremental
# Install Scrapy
pip install scrapy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment