我有一个python程序:
import sys
from PySide.QtCore import *
from PySide.QtGui import *
from PySide.QtWebKit import *
app = QApplication(sys.argv)
web = QWebView()
web.load(QUrl("htpp://www.google.com"))
web.show()
web.resize(650, 750)
web.setWindowTitle('Website')
sys.exit(app.exec_())
我只是用 google.com 为例。但是如果我想用 py2exe 制作这个程序的可执行文件,但它不会工作。我收到此错误:
对于没有 PySide 的其他程序,它确实可以工作。但是对于 PySide,它不会。我怎样才能让它工作?