解决ImportError: DLL load failed while importing _rust: 找不到指定的程序
解决ImportError: DLL load failed while importing _rust: 找不到指定的程序python使用库cryptography当 from cryptography.hazmat.bindings._rust import exceptions as rust_exceptions 时,会报错:ImportError: DLL load failed whi
解决ImportError: 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的版本,查看版本的方法如下
import cryptography
print(cryptography.__version__)
解决办法
安装低版本的 cryptography
pip install cryptography==41.0.2
这里报错的内容是解决问题的关键,它提示我说我的cryptography的版本是错误的,我的cryptography版本应该与pyopenssl的版本相对应,最少应为41.0.5版本。而之前报错的版本为42版本的,所以这里保险起见,我下载了41.0.5版本的cryptography。
pip install cryptography==41.0.5
关于python提取pdf 如果pdf被限制只能查看阅读,但是不能正常提取pdf文字的问题
f = open(read_path, 'rb') # 来创建一个pdf文档分析器 parser = PDFParser(f) # 创建一个PDF文档对象存储文档结构 document = PDFDocument(parser) if(document.is_extractable!=True): print("该PDF可能受限")
python版本问题需要对应 3.9 对应202312月的第三方库
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
所有评论(0)