Python Error: No module named cryptography.hazmat.backends

This is probably because you don’t have package cryptography installed.

You can install it in command line via pip:

pip install cryptography

Install specific version:

pip install "cryptography==2.8"

Get more info about package via pypi.org: cryptography

Leave a comment