I installed scrapy recently by using the pip command (pip install scrapy
). Now I discovered that the installed version is 1.8.0. How to get it updated to the most recent 2.1.0? Uninstalling and reinstall did not work.
UPDATE, PARTLY SOLVED:
I updated ip through python -m pip install --upgrade --force-reinstall pip
. That did not change the outcome of the pip install -U scrapy
. But forcing pip to be run by python3 did. So after python3 -m pip install -U scrapy
my scrapy version is now 2.1.0
. Looks like some issues with the two python versions on my machines and some settings? Anybody can shine a light on this?