解决 DLL load failed while importing _rust
python使用库cryptography
当 from cryptography.hazmat.bindings._rust import exceptions as rust_exceptions 时,会报错:
ImportError: DLL load failed while importing _rust: 找不到指定的程序。
问题分析
可能是cryptography的版本不对导致的,本人安装的是42.0.5的版本,查看版本的方法如下
python
import cryptography
print(cryptography.__version__)
解决办法
安装低版本的 cryptography
shell
pip install cryptography==41.0.2