eellak / gsoc2018-spacy

[GSOC] Greek language support for spacy.io python NLP software
http://nlpbuddy.io/gsoc
MIT License
100 stars 9 forks source link

Problem installing el_core_web_sm #12

Open stordopoulos opened 3 years ago

stordopoulos commented 3 years ago

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:

But it seems that there's an issue install either of the Greek gsoc2018-spacy models:

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

Here's a copy to the Colab Notebook: Spacy_Greek_language.ipynb

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)

Your Environment