Laulorenzo
Laulorenzo

Reputation: 21

Anaconda - JupyterLab - spaCy : "No module named spacy" in terminal

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

Answers (1)

polm23
polm23

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

Related Questions