The current version of spacy (3.8.0) downloads the pretrained models by installing them with pip
command. That is, it internally runs pip
, as can be seen in its source code in spacy/cli/download.py
, function download_model()
. So the models are stored in the directory where your local modules installed by pip are stored, package name being the name of the model.