Open bhargavvader opened 3 years ago
Check out this page for more details about what you are downloading: https://spacy.io/usage/models
Basically, think of them as these super lightweight neural based language models which perform a lot of the tasks which will be useful for us throughout the class.
Thanks! This solved that issue for me.
If you found yourself encountering this error, run
python -m spacy download en
in terminal and then run the command again.
Thank you! I have tried to run 'python -m spacy download en' in terminal, but I met requests exceptions error:
Same with @LouisaZhao1998 But I notice this is the problem with the connections, which I had met when requesting (scraping wiki), although I use VPN in China. My past solution is to use the VPN from US university, and the connection issue can always be solved, same with this time.
Unfortunately, downloading is tooooo slow, and then encounter another problem:
Is there any solution?
Got solved! It's still due to the Internet connection problem. It's easily solved by changing to a better environment.
Thanks @Rui-echo-Pan . I can download the packages now, but when building dependencies, it shows another error "Could not build wheels for blis which use PEP 517 and cannot be installed directly".
I run pip install --upgrade pip setuptools wheel. Though I also have downloaded pep517 and satisfied wheel, the error still comes up.
Any solution to the wheel problem? Thanks in advance.
Seems to be an issue with certain libraries for Windows and spaCy, a quick google search on errors to do with failed building wheels for blis turns up:
https://stackoverflow.com/questions/43370851/failed-building-wheel-for-spacy
https://github.com/explosion/spaCy/issues/3019
https://github.com/explosion/spaCy/issues/4581
Seems to also maybe do with your python version and the compiler. Hopefully one of those links has the answer!
If you found yourself encountering this error, run
python -m spacy download en
in terminal and then run the command again.