Python
yizhou2010
这个作者很懒,什么都没留下…
展开
-
Python通过pip安装库碰到的问题
在使用pip安装Python包时,有时会遇到错误提示,如“required to install pyproject.toml-based projects”。这个错误通常意味着你正在尝试安装的包需要一个名为pyproject.toml的文件来构建或安装。pyproject.toml文件是Python的包管理工具之一,用于定义构建和打包过程。原创 2024-08-17 15:03:23 · 586 阅读 · 0 评论 -
[已解决]报错: qt.qpa.plugin: Could not load the Qt platform plugin “windows“ in ““ even though it ...
描述在学习python界面图形PySide2,正常安装后出现报错报错内容qt.qpa.plugin: Could not load the Qt platform plugin “windows” in “” even though it …解决将如下文件\Anaconda3\Lib\site-packages\PySide2\plugins\platforms\qminimal.dll\Anaconda3\Lib\site-packages\PySide2\plugins\platforms转载 2020-09-04 17:32:45 · 8143 阅读 · 12 评论 -
Pyinstaller打包出现UnicodeDecodeError: ‘utf-8‘ codec can‘t decode byte 0xce in position 解决方案
解决方案在你打包的命令行中先输入chcp 65001 然后再输入打包命令。pyinstaller -F xxx.py转载 2020-09-04 17:30:44 · 484 阅读 · 0 评论 -
PyQt5 如何让界面和逻辑分离简介
PyQt5 如何让界面和逻辑分离简介PyQt5 如何让界面和逻辑分离简介前言实例讲解设计uiui转换成py剥离ui和逻辑main函数中调用前言我们已经知道利用QtDesigner来设计界面,并通过Pycharm外部工具PyUIC将其转化成py源文件。不过由于要响应事件操作,往往会将相应的槽函数写在ui的py文件中,这样,界面和逻辑开发就混合在一起了,每一次的ui更新都会伴随着转换后py原创 2017-03-18 12:07:13 · 24510 阅读 · 7 评论 -
pyinstaller打包pyqt5问题解决
pyinstaller安装python程序发布问题1pyinstaller安装wins下打开命令窗口,输入pip install pyinstaller或者在pyinstaller官网http://www.pyinstaller.org/下载相应的版本,解压后,命令窗口进入解压目录,输入python setup.py installpython程序发布安装完成后,打开命令窗口,切换目录到pyth原创 2017-03-30 13:15:21 · 5382 阅读 · 1 评论 -
pyside2 pyqt5安装后出现Could not load the Qt platform plugin "windows" in "" even though it
解决办法:在环境变量中添加QT_QPA_PLATFORM_PLUGIN_PATHD:\Anaconda3\Lib\site-packages\PySide2\plugins后者为PySide2的安装目录,如下图注销重新登录后即可。转载 2018-10-30 14:19:07 · 3581 阅读 · 0 评论 -
code runner提示importError
环境:anaconda + python + vscode +vscode在VSCode安装code runner插件后,运行.py程序,出现错误ImportError: no module name ***原因:在环境变量中添加anaconda安装路径D:\Users\Printer\Anaconda3D:\Users\Printer\Anaconda3\ScriptsD:\Us...原创 2019-06-24 15:07:18 · 492 阅读 · 0 评论