About 50 results
Open links in new tab
  1. python - Lemmatize a doc with spacy? - Stack Overflow

    Aug 2, 2018 · I have a spaCy doc that I would like to lemmatize. For example: import spacy nlp = spacy.load('en_core_web_lg') my_str = 'Python is the greatest language in the world' doc = …

  2. python - How to install spacy? - Stack Overflow

    Dec 7, 2024 · How to install spacy? Asked 11 months ago Modified 11 months ago Viewed 3k times

  3. What do spaCy's part-of-speech and dependency tags mean?

    Oct 27, 2016 · spaCy tags up each of the Token s in a Document with a part of speech (in two different formats, one stored in the pos and pos_ properties of the Token and the other stored in the tag and …

  4. pip install spacy errors with Python 3.13 - Stack Overflow

    At the time of writing (May 17 2025), spacy does not seem to support Python 3.13 (the version you seem to be using). Use Python 3.12 instead, for example with uv or conda (via for example micromamba).

  5. Python Cannot install module spaCy - Stack Overflow

    I´m new to python and I ran into a problem I can´t solve. I would like to install and use the package spacy in python. Therefore I opened cmd and ran pip install spacy While installing the depende...

  6. python3.9 how to find a compatible Spacy version - Stack Overflow

    Jun 6, 2024 · I need to re-deploy an existing very old python GCP Cloud Function that uses Spacy and other NLP stuff (that I am not familiar with) - to use a newer python runtime (3.9 or above) . Sparing …

  7. spaCy: Can't find model 'en_core_web_sm' on windows 10 and Python …

    For example, you could do python -m spacy download en_core_web_lg and then python -m spacy link en_core_web_lg en. That would make en a name for en_core_web_lg, which is a large spaCy model …

  8. python - Install SpaCy in a Jupyter Notebook - Stack Overflow

    Oct 8, 2020 · I try to install SpaCy for lemmatization, but it won't work... First I install spacy:

  9. How to install Specific version of Spacy - Stack Overflow

    Aug 4, 2021 · Actually it doesn't have any binary wheels even for older versions of python, so to install it you'd definitely need a compiler. This is probably not what you want. If you want spaCy v2 instead of …

  10. python - How to install a language model - Stack Overflow

    Sep 7, 2019 · Install spacy and install the en_core_web_lg language model. I completed the first step, just by searching for the spacy package in Anaconda environments (the conventional way) and …