from PyQt5.QtGui import QGuiApplication
app = QGuiApplication([])
启动时,会出错
qt.qpa.screen: QXcbConnection: Could not connect to display
Could not connect to any X display.
告诉我如何解决这个问题?我找不到了。
答案 0 :(得分:2)
看起来未设置DISPLAY
环境变量。你是从图形会话运行吗?如果您通过SSH运行此程序,则需要使用X11转发。
假设它已在服务器上启用,则需要使用-X
选项运行ssh。
您可以在ssh man page上找到有关此内容的更多信息。