You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to install spaCy on Google's Colab (Google's version of Jupyter), and test its capabilities, as well as how well it can handle the Greek language. I had no problems installing:
en_core_web_trf
el_core_news_sm
But it seems that there's an issue install either of the Greek gsoc2018-spacy models:
el_core_web_sm
el_core_web_lg
The code is pretty straight forward:
# Print CUDA version
!nvcc --version
# Install necessary packages for spaCy
!pip install -U pip setuptools wheel
# Install the latest version of spaCy
!pip install "spacy[cuda110,transformers,lookups]>=3.1"
# Install Greek models for spaCy
!python -m spacy download en_core_web_trf
!python -m spacy download el_core_web_lg
2021-08-05 11:45:27.512036: I tensorflow/stream_executor/platform/default/dso_loader.cc:53] Successfully opened dynamic library libcudart.so.11.0
✘ No compatible package found for'el_core_web_sm' (spaCy v3.1.1)
2021-08-05 11:45:31.568570: I tensorflow/stream_executor/platform/default/dso_loader.cc:53] Successfully opened dynamic library libcudart.so.11.0
✘ No compatible package found for'el_core_web_lg' (spaCy v3.1.1)
How to reproduce the problem
I'm trying to install spaCy on Google's Colab (Google's version of Jupyter), and test its capabilities, as well as how well it can handle the Greek language. I had no problems installing:
en_core_web_trf
el_core_news_sm
But it seems that there's an issue install either of the Greek
gsoc2018-spacy
models:el_core_web_sm
el_core_web_lg
The code is pretty straight forward:
Here's a copy to the Colab Notebook: Spacy_Greek_language.ipynb
Your Environment
The text was updated successfully, but these errors were encountered: