-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[E053] Could not read config.cfg #7453
Comments
Hi! The 2.2.0 model is incompatible with spaCy v3. You can check your models and installation with
So I'm afraid you'll either have to downgrade spaCy to |
Amazing! It solved my issue. Thank you so much! |
Happy to hear it! |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
my code
!pip install https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-2.2.0/en_core_web_sm-2.2.0.tar.gz
!pip install pyresparser
data_words_nostops = remove_stopwords(abs_words)
data_words_bigrams = make_bigrams(data_words_nostops)
nlp = spacy.load('en_core_web_sm', disable=['parser', 'ner'])
Error I've got
OSError: [E053] Could not read config.cfg from /Users/suwanlong/opt/anaconda3/lib/python3.8/site-packages/en_core_web_sm/en_core_web_sm-2.3.1/config.cfg
Your Environment
I have tried
pip install -U pip setuptools wheel pip install -U spacy python -m spacy download en_core_web_sm
$!python -m spacy download en_core_web_sm import spacy nlp = spacy.load("en_core_web_sm")
All of them are not working for my case.
Any ideas? thanks!
The text was updated successfully, but these errors were encountered: