解决Scrapy警告:You do not have a working installation of the service_identity module: 'cannot import name opentype'.

清泛原创
使用scrapy进行爬虫项目的操作时,出现如下错误:

从提示错误来看,我们需要安装一个模块service_identity,根据提示地址(https://pypi.python.org/pypi/service_identity)来安装。

我们可以直接通过命令行下载:

pip install service_identity-17.0.0-py2.py3-none-any.whl

如果上面的方法没能解决问题,很大可能是有些包的版本不一样导致的,这个时候我们可以用下面这行代码来强制更新:

pip install service_identity --force --upgrade

至此,问题解决。

分享到:
评论加载中,请稍后...
创APP如搭积木 - 创意无限,梦想即时!
回到顶部