赞
踩
调用spacy.load失败报错
nlp = spacy.load('zh_core_web_sm')
1.首先确认是否安装spacy,没有的话pip安装
pip install spacy
python -m spacy download zh_core_web_sm
其他类似spacy问题,可参考https://github.com/explosion/spacy-models/releases
2.下载速度比较慢失败的话,可以通过镜像下载
各个镜像地址:
清华大学:https://pypi.tuna.tsinghua.edu.cn/simple/
阿里云:http://mirrors.aliyun.com/pypi/simple/
中科大 https://pypi.mirrors.ustc.edu.cn/simple/
华中科大:http://pypi.hustunique.com/
豆瓣:http://pypi.douban.com/simple/
pip install *** -i 网址
pip install ***.whl
3.如果下载失败的话,还可以离线下载tar.gz文件后安装
pip install 文件目录/zh_core_web_sm-3.3.0.tar.gz
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。