安装库spacy

 pip install spacy==3.0.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 
 去官网下载3.0.0版本到本地English · spaCy Models Documentation

pip install en_core_web_sm-3.0.0.tar.gz 

验证:
import spacy

spacy.load('en_core_web_sm')

你可能感兴趣的:(python,linux,开发语言)