Reputation: 31
When I try pip install cryptodome
it returns this:
Collecting cryptodome
Could not find a version that satisfies the requirement cryptodome (from versions: )
No matching distribution found for cryptodome
I've already tried updating pip, what should I do?
Upvotes: 3
Views: 28866
Reputation: 81
working
pip3 install pycryptodomex
or
pip install pycryptodomex
if issus
sudo apt-get install pycryptodomex
(Debian linux)
Upvotes: 8
Reputation: 1
you can use the pycryptodome package instead, go to command prompt and type in : pip3 install pycryptodome
pycryptodome documentation link: https://pycryptodome.readthedocs.io/en/latest/src/installation.html
Upvotes: 0
Reputation: 909
You should use pip install pycryptodome
.
Here is a link to the documentation: https://pycryptodome.readthedocs.io/
Upvotes: 3