在 python 中安装 SpacCy 语言模型不起作用
Installation of SpacCy Language Model in python not working
我正在学习 Rasa Core "Building a simple Bot" 教程。 (https://core.rasa.com/tutorial_basics.html)需要安装SpaCy语言模型:
python -m spacy 下载 en_core_web_md
然而,我得到 "AttributeError: module 'thinc.linalg' has no attribute 'Mat'"
你知道是什么原因造成的吗?
最新的 Spacy 要求 thinc 为:
thinc>=6.10.1,<6.11.0
仔细检查 requirements.txt 并检查哪些模块安装了 pip 列表。如果问题出在不正确的 thinc 版本上,那么 运行
pip uninstall thinc
pip install thinc==6.10.1
我正在学习 Rasa Core "Building a simple Bot" 教程。 (https://core.rasa.com/tutorial_basics.html)需要安装SpaCy语言模型:
python -m spacy 下载 en_core_web_md
然而,我得到 "AttributeError: module 'thinc.linalg' has no attribute 'Mat'"
你知道是什么原因造成的吗?
最新的 Spacy 要求 thinc 为:
thinc>=6.10.1,<6.11.0
仔细检查 requirements.txt 并检查哪些模块安装了 pip 列表。如果问题出在不正确的 thinc 版本上,那么 运行
pip uninstall thinc
pip install thinc==6.10.1