Installation issue on Windows

I am trying to install prodigy-1.11.0a11-cp39-cp39-win_amd64.whl i get this error ERROR: prodigy-1.11.0a11-cp39-cp39-win_amd64.whl is not a supported wheel on this platform.

I am using spacy 3.1.0
python 3.7.7

Any suggestions?

Have you tried searching the forum? Here is one that is a little newer.

Of note, the latest stable version of Prodigy does not support Spacy 3 (Spacy 2 only)

Based on the command you posted, it looks like you're trying to install the wheel file for Python 3.9 (cp39), but you're running Python 3.7. So you should be installing the wheel for Python 3.7 (cp37) instead.

You can also run pip install prodigy -f /path/to/wheels (where the path is the directory of all unzipped wheel files). This way, pip should automatically pick the correct and best-matching wheel for your platform and Python version.