昨天将python从3.7.4
升级到python3.8
,在部署scrapy
时发生了如下错误:
Building wheel for Twisted (setup.py) ... error
也就是说Twisted
这个whl
文件的问题,所以我们选择手动下载安装:
https://www.lfd.uci.edu/~gohlke/pythonlibs/#twisted
这里的cp就是python的版本。
下载完成后pip install 文件路径
进行安装:
然后重新安装scrapy
:
即可安装成功。
总结:安装错误可能是镜像源的错误或者版本不对,只需要手动安装出错的whl文件,然后继续安装即可。