Can't find model 'en_core_web_lg' #12397
Unanswered
robnev1
asked this question in
Help: Installation
Replies: 1 comment
-
Hey, thanks for your post! Have you tried to install spaCy from a new virtual environment? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
first post newbie etc. I am trying to do topic modelling and have downloaded spacy but when trying to use the en_core_web_lg i receive the following error message:
OSError: [E050] Can't find model 'en_core_web_lg'. It doesn't seem to be a Python package or a valid path to a data directory.
i have tried to use the anaconda powershell with this code: pip install -U spacy python -m spacy download en_core_web_sm
but i get an error AttributeError: module 'click.utils' has no attribute '_expand_args'
i have also tried conda install -c conda-forge spacy-model-en_core_web_lg in powershell but this errors and i have also tried from kaggle import spacy.cli
spacy.cli.download("en_core_web_lg")
nlp = spacy.load("en_core_web_lg")
but this also errors 'HTTPSConnectionPool(host='raw.githubusercontent.com', port=443): Max retries exceeded with url: /explosion/spacy-models/master/compatibility.json (Caused by SSLError(SSLCertVerificationError(1, '[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: unable to get local issuer certificate (_ssl.c:1123)')'
any help appreciated
Beta Was this translation helpful? Give feedback.
All reactions