Not able to import en_core_web_sm or Spacy

2019-08-28 05:51发布

问题:

I am trying to import en_core_web_sm as independent package and also tried through spacy. But I am getting an error in ujson module in both case.

Error :

ModuleNotFoundError: No module named 'srsly.ujson.ujson'

I installed en_core_web_sm through following command

python -m spacy download en_core_web_sm

Going by Spacy documentation it shall work. But it is not. I want to import en_core_web_sm.

回答1:

srsly listed as a dependency so it should be installed. If it's not installed just install it yourself:

python -m pip install srsly