Skip to content

Instantly share code, notes, and snippets.

@kngvamxx
Created February 11, 2021 14:18
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 kngvamxx/66c9ef8755b69948f1932c1d65d9cb95 to your computer and use it in GitHub Desktop.
Save kngvamxx/66c9ef8755b69948f1932c1d65d9cb95 to your computer and use it in GitHub Desktop.
how to install scrapy
sudo apt-get install python3 python3-dev python3-pip libxml2-dev libxslt1-dev zlib1g-dev libffi-dev libssl-dev
#python3-dev, zlib1g-dev, libxml2-dev and libxslt1-dev are required for lxml
#libssl-dev and libffi-dev are required for cryptography
pip install virtualenv
virtualenv venv
source venv/bin/activate
pip install pillow
pip install scrapy
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment