Paramiko error: Use module Crypto.Signature.pkcs1_15 instead
Recently I started getting the following error in a script that never had any problems in the past:
1 |
NotImplementedError: Use module Crypto.Signature.pkcs1_15 instead |
There wasn’t much information related to this error in regards to Paramiko.
Eventually I was able to “fix” it by running:
1 2 3 |
sudo -H pip uninstall paramiko sudo -H pip uninstall pycrypto sudo -H pip install paramiko |
3 Comments
seb
Thanks a lot, that helped a lot when trying to get MySQL Workbench up and running under Ubuntu 16.04
Mark Reynolds
Worked for me.
Bilbo
THANK YOU!