Hi! Did you double check that the file is actually there and in the same directory? Sometimes it helps pip if you run pip install *.whl. This will typically also show a more descriptive error if the file is not there. Also see here:
Hey Ines, I ran into the same problem but "pip install *.whl" does not work. Here are my detailed problem:
Tried running
pip install prodigy-1.10.8-cp36.cp37.cp38-cp36m.cp37m.cp38-macosx_10_15_x86_64.whl
ERROR: prodigy-1.10.8-cp36.cp37.cp38-cp36m.cp37m.cp38-macosx_10_15_x86_64.whl is not a supported wheel on this platform.
I have Mac 10.15, python 3.9, and pip 21.2.1.
Is it caused by python version3.9? Looking forward to your reply.
Yes, the problem here is that the wheel is built for Python 3.6, 3.7 and 3.8, but you're running 3.9. You can work around this by launching a new virtual environment using Python 3.8 (e.g. with pyenv). The upcoming version (currently available as a nightly pre-release) will include wheels for Python 3.9 as well.