解决cryptography库报错【DLL load failed while importing _rust】
PigOrz 2024-06-21 17:05:11 阅读 56
解决 DLL load failed while importing _rust
python使用库cryptography问题分析解决办法
python使用库cryptography
当 from cryptography.hazmat.bindings._rust import exceptions as rust_exceptions 时,会报错:
ImportError: DLL load failed while importing _rust: 找不到指定的程序。
问题分析
可能是cryptography的版本不对导致的,本人安装的是42.0.5的版本,查看版本的方法如下
import cryptographyprint(cryptography.__version__)
解决办法
安装低版本的 cryptography
pip install cryptography==41.0.2
上一篇: python pymodbus库使用教程(以Modbus RTU为例)(read_holding_registers()、read_input_registers())
下一篇: 【Python】超详细实例讲解python多线程(threading模块)
本文标签
声明
本文内容仅代表作者观点,或转载于其他网站,本站不以此文作为商业用途
如有涉及侵权,请联系本站进行删除
转载本站原创文章,请注明来源及作者。