Last active
October 2, 2020 13:55
-
-
Save afahitech/543825a6dd84072d5f34e7bc96c25bd7 to your computer and use it in GitHub Desktop.
How to install Scrapy on Ubuntu 18.04 LTS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| If you need Scrapy installation contact with me: | |
| Skype: aataur1 | |
| Telegram: @AutoDevOps | |
| WhatsApp: +8801751643484 | |
| Email: [email protected] | |
| --------------------------------------------------------------- | |
| # !/bin/sh | |
| # Install python dependency | |
| sudo apt-get install python3-dev | |
| sudo apt-get install python2-dev | |
| cd ~ | |
| wget https://bootstrap.pypa.io/get-pip.py | |
| sudo python3 get-pip.py | |
| pip -V | |
| sudo pip3 install scrapy | |
| Second Procedure : | |
| sudo pip3 install virtualenv | |
| cd ~ | |
| mkdir Virtualenvs | |
| cd Virtualenvs | |
| virtualenv scrapy_env | |
| pip3 install scrapy | |
| pip3 install ipython | |
| #Scrapy #ScrapyInstall #SetupScrapy |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment