Pythonの初学者です。PySide2を使ってみようとしたのですが、2以降のエラーが発生しました。VScodeを使い勉強してます。どなたかご教授頂けると幸いです。
python
1import sys 2 3from PySide2 import QtWidgets 4 5 6class DirMaker(QtWidgets.QWidget): 7 pass 8 9 10if __name__ == '__main__': 11 app = QtWidgets.QApplication(sys.argv) 12 13 win = DirMaker() 14 win.show() 15 16 result = app.exec_() 17 sys.exit(result)
2.エラー内容
qt.qpa.plugin: Could not load the Qt platform plugin "windows" in "" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application
may fix this problem.
Available platform plugins are: direct2d, minimal, offscreen, windows.
あなたの回答
tips
プレビュー