0
I am making a calculation program that is divided into 3 files py
:
- graphical interface file (
cerberus.py
) - file making the calculations(
calc.py
) - file responsible for data plotting(
plot.py
)
I tried to compile with the command:
pyinstaller --onefile --windowed cerberus.py
But when opening the resulting file, it no longer carried out the calculations or plots on the canvas, it was "inerte
". How do I fix it?