I would like to pip install several language models in a particular folder different than the default one.
How to proceed?
The following does not seem to work:
pip install /shared/public/spacy/en_core_web_lg-3.0.0-py3-none-any.whl
see: https://github.com/explosion/spacy-models/releases//tag/en_core_web_lg-3.0.0
With the typical installation procedure: python -m spacy download en_core_web_lg I can not control the folder.
the use case here is install the model in a folder available to everyone in a server in order to avoid multiple downloads.
NOTE: I already have Spacy installed in my particular virtual environment, i.e. I dont need to create a new one. Actually in my particular environment I do have the small language model of spacy for English. The question relates ONLY to installing yet another language model, the large one, in a particular folder, and being able to load that model from that folder.
thanks