Checking dependencies Python Version: 3.6.5 Sorry, please install PyQt5. Error: No module named 'PyQt5.sip'
时间: 2024-05-16 19:12:21 浏览: 110
stavens_opencv_optical_flow.rar_site:www.pudn.com_things
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.
阅读全文