pyside6打包时could not find the Qt platform plugin "windows" in "E:\learn\anaconda3\envs\python3.8.8\lib\site-packages\Pyside6\plugs
时间: 2023-11-05 13:06:04 浏览: 167
qt的windows安装
这个问题的原因是在打包时没有将Qt平台插件打包进去,因此在运行时找不到Qt平台插件。解决方法是将Qt平台插件手动复制到打包后的exe文件所在的目录下,或者在打包时将Qt平台插件一起打包进去。
以下是解决方法的步骤:
1. 打开Anaconda Prompt,进入你的虚拟环境。
2. 安装PyInstaller:pip install pyinstaller
3. 打包exe文件:pyinstaller your_script.py
4. 将Qt平台插件复制到打包后的exe文件所在的目录下,具体路径为:E:\learn\anaconda3\envs\python3.8.8\lib\site-packages\Pyside6\plugins\platforms
5. 运行exe文件,问题应该已经解决了。
阅读全文