先要确定是什么模块找不到

Windows环境下有网友说需要删除system32下的两个文件,但我并没有那两个文件
我再python环境中引入cryptography 并没与问题
但是引入
from cryptography.hazmat.bindings._openssl import ffi, lib
报了找不到指定模块
解决方法
pip install -I cryptography
本文探讨了在Python环境中遇到的cryptography模块导入问题,特别是从cryptography.hazmat.bindings._openssl导入ffi,lib时出现的指定模块未找到错误。通过详细分析,提供了有效的解决方案,包括使用pip install -I cryptography命令进行重新安装。
先要确定是什么模块找不到

Windows环境下有网友说需要删除system32下的两个文件,但我并没有那两个文件
我再python环境中引入cryptography 并没与问题
但是引入
from cryptography.hazmat.bindings._openssl import ffi, lib
报了找不到指定模块
解决方法
pip install -I cryptography
5592
1万+
3203
1865