I have installed PyQt5
and PyQt5-tools
using command prompt and pip install PyQt5
then pip install PyQt5-tools
and sudo apt-get install python3-pyqt5
everything installed fine I then put in the following code
from PyQt5 import QtWidgets
from PyQt5.QtWidgets import QApplication, QMainWindow
import sys
def window():
app = QApplication(sys.argv)
win = QMainWindow()
win.setGeometry(200, 200, 300, 300)
win.setWindowTtitle("Darts Scoreboard")
win.show()
sys.exit(app.exec_())
window()
but get the following traceback
Traceback (most recent call last):
File "/home/bilal/Documents/hello.py", line 1, in <module>
from PyQt5 import QtWidgets
ImportError: No module named PyQt5
[Finished in 0.1s with exit code 1]
[shell_cmd: python -u "/home/bilal/Documents/hello.py"]
I have checked all sort of youtube help advice and instructions and nothing seems to work can someone please please help