ModuleNotFoundError: No module named 'layout_colorwidget'

Heads up! You've already completed this tutorial.

Paul_Fishback | 2021-04-28 19:18:24 UTC | #1

Running PyQt6 on a Mac (Big Sur 11.2.3) with Atom 155.0 as my IDE.

Trying to replicate the example on p. 71 of the book (PyQt6 edition):

python
import sys
from PyQt6.QtCore import Qt
from PyQt6.QtWidgets import QApplication, QMainWindow, QVBoxLayout,QWidget
from layout_colorwidget import Color

class MainWindow(QMainWindow):
    def __init__(self):
        super().__init__()
        self.setWindowTitle("My App")
        layout = QVBoxLayout()
        layout.addWidget(Color("red"))
        layout.addWidget(Color("green"))
        layout.addWidget(Color("blue"))
        widget = QWidget()
        widget.setLayout(layout)
        self.setCentralWidget(widget)

app = QApplication(sys.argv)
window = MainWindow()
window.show()
app.exec()

Obtain error message, "ModuleNotFoundError: No module named 'layout_colorwidget'"


martin | 2021-04-28 19:18:11 UTC | #2

Hi @Paul_Fishback welcome to the forum!

The code for the layout_colorwidget file is given in the previous code block -- this needs to be saved to a separate file with the name layout_colorwiget.py so it can be imported. This isn't exactly clear, so I need to improve this.

Packaging Python Applications with PyInstaller by Martin Fitzpatrick — This step-by-step guide walks you through packaging your own Python applications from simple examples to complete installers and signed executables.

More info Get the book

You can also find the file in the source code downloads with the book, in the same folder with the layout examples.


Well done, you've finished this tutorial! Mark As Complete
[[ user.completed.length ]] completed [[ user.streak+1 ]] day streak

ModuleNotFoundError: No module named 'layout_colorwidget' was written by Martin Fitzpatrick .

Martin Fitzpatrick has been developing Python/Qt apps for 8 years. Building desktop applications to make data-analysis tools more user-friendly, Python was the obvious choice. Starting with Tk, later moving to wxWidgets and finally adopting PyQt.