I have written code to generate public and private keys. It works great at Python 3.7 but it fails in Python 3.8. I don\'t know how it fails in the latest version. Help me w
Check if you are using PyCrypto, if yes, uninstall it and install PyCryptodome which is a fork of PyCrypto
PyCrypto is dead as mentioned on project issue page
Since both these libraries can coexist, it could be an issue too
pip3 uninstall PyCrypto pip3 install -U PyCryptodome