Skip to content Skip to sidebar Skip to footer

Python How To Update Scrapy To 0.22

I am working with python 2.7 with scrapy 0.20 I would like to try scrapy 0.22, how to do that please? I tried pip scrapy update but I got error message I followed this question

Solution 1:

You may need to upgraded pip:

pip install --upgrade pip 

Then upgrade scrapy:

pip install --upgrade scrapy

or...

You may need to upgraded pip:

pip install --upgrade pip

Then remove scrapy:

pip uninstall scrapy

Then reinstall scrapy:

pip install scrapy

Post a Comment for "Python How To Update Scrapy To 0.22"