Python的报错笔记整理——(cmd下载)OSError: [E050] Can‘t find model ‘zh_core_web_sm‘

Python的报错笔记整理——(cmd下载)OSError: [E050] Can't find model 'zh_core_web_sm'.

      • 问题来源和解决方法

本文主要总结一些我在学习自然语言处理的时候遇到的报错情况。

报错情况如下:

OSError: [E050] Can’t find model ‘zh_core_web_sm’. It doesn’t seem to be a Python package or a valid path to a data directory.

问题来源和解决方法

电脑中并没有下载:

  1. 网站下载
python -m spacy download en_core_web_sm

使用网络下载的话有的时候真的很慢,可以先选择使用镜像网站会相对来说快一点点~

各个镜像地址:
  清华大学: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.sdutlinux.org/
  豆瓣:http://pypi.douban.com/simple/

  pip install (需要下载的第三方模块) -i (上方的镜像地址选一个)
  1. 本地下载
    可以先在网站上进行相关的第三方模块下载,随后进行导入。
pip install C:\Users\ASUS\Desktop\zh_core_web_sm-3.0.0-py3-none-any.whl

你可能感兴趣的:(python)