Kai Chang
Kai Chang

Reputation: 31

How to install cryptodome using Pip?

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

Answers (3)

Jasmin
Jasmin

Reputation: 81

working

pip3 install pycryptodomex

or

pip install pycryptodomex

if issus

sudo apt-get install pycryptodomex

(Debian linux)

Upvotes: 8

Aslan
Aslan

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

Gabriel Ben Compte
Gabriel Ben Compte

Reputation: 909

You should use pip install pycryptodome.

Here is a link to the documentation: https://pycryptodome.readthedocs.io/

Upvotes: 3

Related Questions