![]() |
VOOZH | about |
Scrapy is a web scraping library that is used to scrape, parse and collect web data. Now once our spider has scrapped the data then it decides whether to:
In this article, we will look into the process of installing the Scrapy module on Windows.
The only thing that you need for installing the Scrapy module on Windows are:
If you want the installation to be done through conda, you can use the below command:
conda install scrapy
Type y for yes when prompted.
You will get a similar message once the installation is complete
👁 installing scrapy using conda
Make sure you follow the best practices for installation using conda as:
conda create -n my-env conda activate my-env
Note: If your preferred method of installation is conda-forge, use the below command:
conda config --env --add channels conda-forge
Users who prefer to use pip can use the below command to install the Scrapy package on Windows:
pip install scrapy
You will get a similar message once the installation is complete:
To verify if Scrapy has been successfully installed in your system run the below code in a python IDE of your choice:
If successfully installed you will get the following output.