ImportError: cannot import name 'QPrinter' from 'PyQt5'
ImportError: cannot import name 'QPrinter' from 'PyQt5'
from PyQt5 import QtCore, QtGui, QtWidgets,QtPrintSupport
from PyQt5 import QPrinter
import sqlite3
当 运行 此错误显示:导入错误:无法从 'PyQt5' 导入名称 'QPrinter'
任何帮助请
QPrinter
是 QtPrintSupport
中的 class,而是像这样导入:
from PyQt5.QtPrintSupport import QPrinter
from PyQt5 import QtCore, QtGui, QtWidgets,QtPrintSupport
from PyQt5 import QPrinter
import sqlite3
当 运行 此错误显示:导入错误:无法从 'PyQt5' 导入名称 'QPrinter' 任何帮助请
QPrinter
是 QtPrintSupport
中的 class,而是像这样导入:
from PyQt5.QtPrintSupport import QPrinter