pyuic5 - ModuleNotFoundError: No module named PyQt5.sip(pyuic5 - ModuleNotFoundError:没有名为 PyQt5.sip 的模块)
问题描述
我刚刚在我的 Windows 系统上安装了带有 Python 3.6 的 Anaconda 5.2.还通过具有管理员权限的 pip 安装了 pyqt5 和 pyqt5-tools.现在,当我运行 pyuic5.exe 来转换 ui 文件时,它显示以下错误:
I have just installed Anaconda 5.2 with Python 3.6 on my windows system. Also installed pyqt5 and pyqt5-tools via pip with administrator privilege. Now when I run pyuic5.exe for converting ui files it shows following error:
Traceback (most recent call last):
File "C:UsersAshfaqurRahmanAnaconda3lib
unpy.py", line 193, in _run_module_as_main
"__main__", mod_spec)
File "C:UsersAshfaqurRahmanAnaconda3lib
unpy.py", line 85, in _run_code
exec(code, run_globals)
File "C:UsersAshfaqurRahmanAppDataRoamingPythonPython36site-packagesPyQt5uicpyuic.py", line 26, in <module>
from PyQt5 import QtCore
ModuleNotFoundError: No module named 'PyQt5.sip'
我尝试使用 pip 安装 PyQt5-sip 包.但是它已经安装在我的系统中了.
I have tried installing PyQt5-sip package using pip. Buts its already installed in my system.
为什么会出现这个问题?我该如何解决这个问题?
Why this problem is occurring? How can I solve this problem?
推荐答案
根据Agile_Eagle的建议来自我刚刚卸载了 pyqt5
和 pyqt5-tools
软件包并重新安装了它们的评论.问题解决了!
According to Agile_Eagle's suggestion from the comments I just uninstalled pyqt5
and pyqt5-tools
packages and the reinstalled them. Problem solved!
PS.:如果您仍然遇到 PyQt 问题,请尝试卸载所有 PyQt 相关库:
PS.: If you still got problems with PyQt, try uninstalling all of the PyQt related libraries:
pip uninstall PyQt5
pip uninstall PyQt5-sip
pip uninstall PyQtWebEngine
然后重新安装它们,这将修复:
Then install them again, this will fix:
ModuleNotFoundError: No module named 'PyQt5.sip'
ModuleNotFoundError: No module named 'PyQt5.QtWebEngineWidgets'
PPS.:如果您在卸载库时遇到问题,请转到您的 Python 文件夹,例如 C:Users<USERNAME>AppDataLocalProgramsPythonPython<PYTHON-VERSION>Libsite-packages
并手动删除 PyQt 文件夹,然后卸载所有内容并重新安装(确保您拥有最新的 Python 版本并升级您的 pip)
PPS.:If you got problems uninstalling the libraries, go to your Python folder, like C:Users<USERNAME>AppDataLocalProgramsPythonPython<PYTHON-VERSION>Libsite-packages
and manually delete the PyQt folders, then uninstall everything and install again (Make sure you have the latest Python version and upgraded your pip too)
这篇关于pyuic5 - ModuleNotFoundError:没有名为 PyQt5.sip 的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:pyuic5 - ModuleNotFoundError:没有名为 PyQt5.sip 的模块
基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 筛选NumPy数组 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01