In hopes of facilitating the installation of a tool I have built, I would like to have an enviroment.yml
file that could help install all the required dependencies. I do have one, however, Spacy language models require an additional download via (for example) python -m spacy download en_core_web_sm
.
My issue is that I would like to have this model downloaded from a simple conda env create -f environment.yml
. I know that pip packages can be installed via Conda, but do not know how to perform the "download" inside the environment.yml
file. Thanks in advance for any help you can provide.