pav
pav

Reputation: 119

Pip install pycryptodome returns: Is not a supported wheel on this platform

I am trying to install pycryptodome-3.19.0 and pycryptodomex-3.19.0 on Windows 11 and Python 3.10 in venv.
Whl files were downloaded from pypi manually:

pycryptodome-3.19.0-pp310-pypy310_pp73-win_amd64.whl  

pycryptodomex-3.19.0-pp310-pypy310_pp73-win_amd64.whl  

Trying to install any of them I have an error:

ERROR: pycryptodome(x)-3.19.0-pp310-pypy310_pp73-win_amd64.whl is not a supported wheel on this platform  

But why? There are most suitable whls availavle on pypi
Whls are for windows and for python 3.10. Why it can't be installed?

Upvotes: 3

Views: 590

Answers (1)

wim
wim

Reputation: 363304

You've downloaded a PyPy wheel, but you're trying to install it on CPython.

Look for a wheel tagged with cp instead of pp.

Run pip debug -v to see a list of supported compatibility tags for your Python installation / platform.

Upvotes: 2

Related Questions