I use misaki package from pypi which uses spacy.
When I run the script that uses it, it tried first to download something from pypi using pip but I use uv which doesn't have pip by default.
I can see in
That you spawn pip for fetch models.
Can you fetch it with requests instead or letting the user decide where and when to fetch it?
I use misaki package from pypi which uses spacy.
When I run the script that uses it, it tried first to download something from pypi using pip but I use
uvwhich doesn't havepipby default.I can see in
spaCy/spacy/cli/download.py
Line 161 in b3c46c3
That you spawn pip for fetch models.
Can you fetch it with requests instead or letting the user decide where and when to fetch it?