How to add a Spacy model to pyproject.toml #1387
-
I would like to have a spacy model installed via rye. Normally, we would do this and it would be added: rye run python -m spacy download en_core_web_sm However, when you Is there a way to specify this in I tried adding the following with no luck: [[tool.rye.sources]]
name="en_core_web_sm"
url="https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.7.1/en_core_web_sm-3.7.1-py3-none-any.whl" Two other people asked about this here: #1004 |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
According to the Spacy docs:
So I tried the following which seems to work: |
Beta Was this translation helpful? Give feedback.
According to the Spacy docs: