from frontend import * ModuleNotFoundError: No module named 'frontend'
时间: 2023-11-17 10:02:38 浏览: 88
Python模块导入出现ModuleNotFoundError: No module named ‘***’
5星 · 资源好评率100%
这个错误提示表明Python无法找到名为“frontend”的模块。这可能是因为该模块未正确安装或未在Python路径中。解决此问题的一种方法是将“from frontend import *”更改为“from fitz.frontend import *”,这将从fitz包中导入frontend模块。这假定您已经安装了fitz包。
阅读全文