no module named res_rc after compile res.qrc file using pyrrc5.exe

406 Views Asked by At

With Qt Creator I created a .ui file and set the main window icon referred to a .ico in res.qrc file.
Then in PyCharm I used pyuic&pyrcc to convert qt files to .py files.
However after I start up my app, I got an import error saying that No module named res_rc in converted ui.py.
I don't know why this time I got the import error. Before today I could really use res_rc.py in my severval pyqt5 examples .
Did I miss something that vital ?

2

There are 2 best solutions below

0
On

ui is looking for your res_rc.py in the root folder and you may have saved it somewhere else. There are 2 solutions: move the file to the root of the program or in the ui.py file change the import to "yourmodule.res_rc.py'

0
On

It seems that files like res_rc.py and ui.py should be in the same folder with app.py and now it works fine.
Previously I put res_rc.py and ui.py in a sub folder