Python2中Paramiko模块遇到CryptographyDeprecationWarning的解决方法

使用Python2的paramiko模块,写了一个简单的ssh登录主机执行命令的脚本,发现每次执行都有一个报错:

/data/sshenv/lib/python2.7/site-packages/paramiko/transport.py:33: CryptographyDeprecationWarning: Python 2 is no longer supported by the Python core team. Support for it is now deprecated in cryptography, and will be removed in the next release.

from cryptography.hazmat.backends import default_backend

简单的百度查询了一下,有很多文档都是让卸载cryptography,因为在安装paramiko模块时会自动升级cryptography到最新版本,所以重新安装到2.4.2版本即可正常使用。

但是在我尝试此方法时,发现了问题如果重装cryptography==2.4.2,执行脚本时会有一个报错,而且解决不掉,

AttributeError: X962

,经过查看git上的依赖文件发现必须cryptography==2.5,所以尝试卸载掉2.4.2,重新安装2.5版本,再次执行没有错误打印了。

  1. 安装paramiko
  2. 卸载cryptography
  3. 重新安装cryptography==2.5版本

你可能感兴趣的:(java)