python使用库cryptography
当 from cryptography.hazmat.bindings._rust import exceptions as rust_exceptions 时,会报错:
ImportError: DLL load failed while importing _rust: 找不到指定的程序。
问题分析
可能是cryptography的版本不对导致的,本人安装的是42.0.5的版本,查看版本的方法如下文章来源:https://www.toymoban.com/news/detail-852994.html
import cryptography
print(cryptography.__version__)
解决办法
安装低版本的 cryptography文章来源地址https://www.toymoban.com/news/detail-852994.html
pip install cryptography==41.0.2
到了这里,关于解决cryptography库报错【DLL load failed while importing _rust】的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!