I am building an exe from a PyQt+pyqtgraph project.
Everything is set correctly, also in the .spec file, since i correctly built a version of the software running pyinstaller.
Now, I did some modifications to my project, but I am not able to build it anymore.
Pyinstaller returns:
PyInstaller.isolated._parent.SubprocessDiedError: Child process died calling _collect_submodules() with args=('pyqtgraph.canvas', 'ignore') and kwargs={}. Its exit code was 3221226505.
Just fixed in two steps:
pip list, i found out that both PyQt5 and PyQt6 were installed. Hence I uninstalled PyQt6.Then everything went ok.