Python Forum
[PyQt] ModuleNotFoundError: No module named 'PyQt5'
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[PyQt] ModuleNotFoundError: No module named 'PyQt5'
#1
I have installed PyQt5 and PyQt5-tools using command prompt and pip install PyQt5 then pip install PyQt5-tools 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
Error:
C:\Users\44787\PycharmProjects\untitled\venv\Scripts\python.exe C:/Users/44787/PycharmProjects/untitled/Scoreboard.py Traceback (most recent call last): File "C:/Users/44787/PycharmProjects/untitled/Scoreboard.py", line 1, in <module> from PyQt5 import QtWidgets ModuleNotFoundError: No module named 'PyQt5'
I have checked alsort of youtube help advice and instructions and nothing seems to work can someone please please help

Thanks
Reply
#2
Please use tags when posting code.
This works for me
#! /usr/bin/python3
from sys import exit as sysExit
import sys
from PyQt5 import QtWidgets
from PyQt5.QtWidgets import QApplication, QMainWindow

def window():
    app = QApplication(sys.argv)
    win = QMainWindow()

    win.show()
    sysExit(app.exec_())

window()
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags


Reply
#3
I think the problem here is that you didn't install PyQt5 properly. Do you have multiple Python installations or something?
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [FIXED] User-defined module: ModuleNotFoundError error in VSCode but not in PyCharm epoxy 5 11,867 Jun-01-2021, 02:16 AM
Last Post: deanhystad
  [WxPython] Linux: No module named 'wx' PeterLinux 23 15,435 Apr-02-2020, 12:50 PM
Last Post: PeterLinux
  Huge code problems (buttons(PyQt5),PyQt5 Threads, Windows etc) ZenWoR 0 2,785 Apr-06-2019, 11:15 PM
Last Post: ZenWoR
  [Kivy] ModuleNotFoundError: No module named 'kivy' Exsul 7 30,050 Mar-30-2019, 12:58 AM
Last Post: Exsul
  "ModuleNotFoundError: No module named '_tkinter' in Python 3.8 Alfa 0 programmerc 1 6,283 Oct-21-2018, 06:32 PM
Last Post: Larz60+
  PyGtk3, No Module Named gi, on python3.5 on Windows harun2525 8 34,324 May-19-2017, 01:30 PM
Last Post: snippsat

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020