赞
踩
网上都说添加下面的路径到新环境变量QT_QPA_PLATFORM_PLUGIN_PATH中,但是我没有这么做,主要是试过好像并不行。因此按照网上说的在代码中直接指定地址。
代码如下:
# coding: utf-8 import sys,os import PySide6 if __name__ == "__main__": dirname = os.path.dirname(PySide6.__file__) plugin_path = os.path.join(dirname, 'plugins', 'platforms') os.environ['QT_QPA_PLATFORM_PLUGIN_PATH'] = plugin_path
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。