PyQT6打包启动报错,说module not found的问题解决

报错信息

file

ModuleNotFoundError: No module named 'BMl computeer

排查

file

如果你的目录中,有init.py文件,那么这个目录是一个普通的package;
python执行代码的时候,会从顶层目录往下找文件的,很可能会导致这个模块找不到,因为它在子目录;

解决

把你的init.py删除,重新打包。

file

Leave a Comment