Open DSharm opened 4 years ago
In particular, I think there's an issue with the
try: nlp = spacy.load('en') except OSError: nlp = spacy.load('en_core_web_sm')
code in processing.py. I seem to be able to import spacy but can't load 'en' or 'en_core_web_sm'.
Hello Damini, could you run python -m spacy download en
in terminal and then run the command again? You can find similar troubleshooting for this: here.
Thanks! That seems to have worked. Now I'm at the "Pushing to GitHub" stage of the setup, and have been for about 30 minutes. Is that to be expected?
I killed the process using Ctrl + Z and manually did a "git push" which seems to have worked
I also have the same question, but a different circumstance.
Traceback (most recent call last):
File "/usr/local/lib/python3.7/site-packages/lucem_illud_2020/proccessing.py", line 10, in <module>
nlp = spacy.load("en")
File "/usr/local/lib/python3.7/site-packages/spacy/__init__.py", line 30, in load
return util.load_model(name, **overrides)
File "/usr/local/lib/python3.7/site-packages/spacy/util.py", line 169, in load_model
raise IOError(Errors.E050.format(name=name))
OSError: [E050] Can't find model 'en'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/local/bin/cta2020-setup-user", line 5, in <module>
from lucem_illud_2020._backend import makeUser
File "/usr/local/lib/python3.7/site-packages/lucem_illud_2020/__init__.py", line 15, in <module>
from .loaders import *
File "/usr/local/lib/python3.7/site-packages/lucem_illud_2020/loaders.py", line 16, in <module>
from .proccessing import normalizeTokens, trainTestSplit, word_tokenize, sent_tokenize
File "/usr/local/lib/python3.7/site-packages/lucem_illud_2020/proccessing.py", line 12, in <module>
nlp = spacy.load("en_core_web_sm")
File "/usr/local/lib/python3.7/site-packages/spacy/__init__.py", line 30, in load
return util.load_model(name, **overrides)
File "/usr/local/lib/python3.7/site-packages/spacy/util.py", line 169, in load_model
raise IOError(Errors.E050.format(name=name))
OSError: [E050] Can't find model 'en_core_web_sm'. It doesn't seem to be a shortcut link, a Python package or a valid path to a data directory.
Hi - I was able to install the class package, but neither of the set up commands worked for me. This is the error message I get - is anyone else experiencing the same?