Reputation: 21
I'm using Anaconda and I'm trying to install spaCy.
At this point:
python -m spacy download fr_core_news_sm
I get stuck with the "no module named spacy" error.
Don't understand what I'm doing wrong.
Thanks,
Upvotes: 2
Views: 351
Reputation: 15633
You have to install spaCy before you use it to download a model. You can use the install helper to guide you on how to this, for example:
conda install -c conda-forge spacy
python -m spacy download fr_core_news_sm
Upvotes: 4