Alexey K
Alexey K

Reputation: 6723

ModuleNotFoundError: No module named 'argon2._ffi' in docker

I faced strange issue in docker. Error is ModuleNotFoundError: No module named 'argon2._ffi' And my image with django inside it has this requirement satisfied. I found this link but there is too few info.

Maybe someone can elaborate, how to fix the issue ?

Thanks.

Upvotes: 4

Views: 3471

Answers (1)

Tms91
Tms91

Reputation: 4204

Maybe installing Argon2 as suggested here solves your problem.

Try with:

python3 -m pip install argon2_cffi
python3 -m pip install -U cffi pip setuptools

Upvotes: 1

Related Questions