Home > Article > Backend Development > Scrapy installation tutorial, two installation methods: pip or conda.
cmd:
pip -V View pip version
pip install --upgrade pip Upgrade to the highest version
Install Pywin32
Although it is written as amd64, it can actually be used by Intel
[Recommended]If it is anaconda's python, directly Jump to install sacrapy.
Type in the cell that comes with conda:
conda install scrapy
The installation is complete.
The difference between pip and conda commands. It is recommended to use conda
pip install + software name
pip install --upgrade +software name
pip uninstall ...... Uninstall
conda install + software name
conda is conda remove+ software name
conda and pip are two A set of software. Sometimes just one set is enough to avoid repeated installation.
The above is the detailed content of Scrapy installation tutorial, two installation methods: pip or conda.. For more information, please follow other related articles on the PHP Chinese website!