About 3,890,000 results
Open links in new tab
  1. python3.9 how to find a compatible Spacy version

    Jun 6, 2024 · which looks like I can't use a combination of spacy=3.0.9 and typer=0.4.1. I cannot go below typer 0.4.1 (many rounds of version adjustments that were failing otherwise...) Now I …

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

    Oct 27, 2016 · spaCy tags up each of the Tokens 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 …

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

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

    May 17, 2025 · That's where I got stuck I tried pip install spacy and many other commands in VS Code terminal but nothing works. I've tried some solutions shared on stackoverflow but none …

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

    Oct 8, 2020 · Search Spacy And in the 1st link Spacy.io-> click on usage -. select Conda for jupyter notebook -> Thn u ...

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

    If you have already downloaded spacy and the language model (E.g., en_core_web_sm or en_core_web_md), then you can follow these steps: Open Anaconda prompt as admin. Then …

  7. spaCy - Tokenization of Hyphenated words - Stack Overflow

    Sep 26, 2019 · nlp = spacy.load('en') nlp.tokenizer.infix_finditer = infix_re.finditer There's a caching bug that should hopefully be fixed in v2.2 that will let this work correctly at any point …

  8. Python Cannot install module spaCy - Stack Overflow

    run pip3 install spacy. At the time of this writing python 3.8 is the max that you can install spacy on. For me the issue was I was trying to install spacy on python 3.9 version and downgrading …

  9. Spacy installation fails on python 3.13 - Stack Overflow

    Oct 10, 2024 · 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 work in python 3.13 Share

  10. Spacy custom tokenizer to include only hyphen words as tokens …

    Jun 25, 2018 · I want to include hyphenated words for example: long-term, self-esteem, etc. as a single token in Spacy. After looking at some similar posts on StackOverflow, Github, its …

Refresh