Checking dependencies Python Version: 3.6.5 Sorry, please install PyQt5. Error: No module named 'PyQt5.sip'
时间: 2024-05-16 22:12:21 浏览: 111
retype:将.pyi存根中的类型注释重新应用于代码库
It looks like you are missing the PyQt5 module, which is required for your program to run. You can install it using pip, which is a package manager for Python.
To install PyQt5, open your terminal or command prompt and enter the following command:
```
pip install PyQt5
```
This should install the required module and allow your program to run without any issues.
阅读全文