I'm trying to install spacy for Python using Anaconda and I'm getting an odd error message:
python -m venv .env
source .env/bin/activate
conda install -c conda-forge spacy
python -m spacy download en_core_web_sm
Error Msg:
File "<ipython-input-13-1a465315722a>", line 2
python -m venv .env
^
SyntaxError: invalid syntax
I've tried several methods and none of them are working.
Any clue how to install this?
Thanks!