ansible --version
/usr/local/lib/python3.6/site-packages/ansible/parsing/vault/__init__.py:44: CryptographyDeprecationWarning: Python 3.6 is no longer supported by the Python core team. Therefore, support for it is deprecated in cryptography and will be removed in a future release.
  from cryptography.exceptions import InvalidSignature
ansible [core 2.11.12]

解决:卸载 cryptography(37.0.2版本)后重新安装36.0.2版本

pip3 uninstall cryptography
Found existing installation: cryptography 37.0.2
Uninstalling cryptography-37.0.2:
  Would remove:
    /usr/local/lib64/python3.6/site-packages/cryptography-37.0.2.dist-info/*
    /usr/local/lib64/python3.6/site-packages/cryptography/*
Proceed (Y/n)? y
  Successfully uninstalled cryptography-37.0.2


pip3 install -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host mirrors.aliyun.com  cryptography==36.0.2

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐