About 13,000,000 results
Open links in new tab
  1. Using only PIP for installing spacy model en_core_web_sm

    Oct 4, 2023 · 6 Is there a way to install en_core_web_sm just by using pip (assuming I already have spacy installed) From the spacy documentation , I know it's to be done using python -m …

  2. 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 = …

  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 …

  4. 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 …

  5. Spacy installation fails on python 3.13 - Stack Overflow

    Oct 10, 2024 · I had the same issue with python3.13. I downgraded to python 3.12.6 and proceed wirh spacy install via pip inside a virtualenv and it worked. I guess not all library dependencies …

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

    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 …

  7. ModuleNotFoundError: No module named 'spacy' even though …

    Oct 26, 2021 · ModuleNotFoundError: No module named 'spacy' I made sure my python and spacy path are same What am I missing?

  8. nlp - Spacy download en_core_web_lg manually - Stack Overflow

    Sep 17, 2021 · Spacy download en_core_web_lg manually Asked 4 years, 2 months ago Modified 1 year, 8 months ago Viewed 17k times

  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 …

  10. Failed to load spaCy model 'en_core_web_sm' - Stack Overflow

    Sep 1, 2020 · When you run python -m spacy download en_core_web_sm, it will pretty much execute the same thing (pip install [link]), with pip running in a subprocess. The download also …