Hi @RuudG!
Thanks for your question.
- Can you create a new conda environment first? I suspect it's more convenient to use your base but it'll be good for debugging to ensure there aren't issues with your base environment.
conda create -n venv
conda activate venv
-
Prodigy 1.11.7 uses spacy>=3.1.1,<3.3.0. However, you have
spacy 3.3.0
. This may be some issue. I suspect you previously hadspacy 3.3.0
on your base environment. This is another reason to start with a new environment. -
How did you install your wheel? It's important to use
pip install
notconda install
asconda install
doesn't support installing wheel files directly.
You can install the wheel by following these instructions.
Can you try these steps and let me know if they don't work?