I can’t figure out what the problem is.
I do pip list:
en-core-web-md 3.7.1
I did
python -m spacy download en_core_web_md
python -m spacy link en_core_web_md en
the later isn’t supported in spacy 3.0 above
I tried
>>> import spacy
>>> nlp = spacy.load("en_core_web_sm")
>>>
all loads fine, but when I call it from my api script, I get this error. Is there something I am missing?