Pyinstaller issues

Hello everyone.

I am having major issues with pyinstaller. I created a practice game and wanted to learn how to share it. I learned about executable files (.exe) and a lot of sites said to install pyintaller. I did and ran into some error messages but eventually fixed it with some youtube vids (which took about 5 mins to fix). The issue I then ran into was when i ran the program, after my last output the program would immediately close. I then learned to have input input ("Press enter to close program") at the end of my code. I have now saved my code, but now i’m running into the same error messages. Do I need to perform this 5 min “fix” everytime I change my code?

Thank you in advance for your help!

This is just the way Windows handles console applications ran without a console. It spawns a throwaway console to run the program then closes it when it exits. This is the same with any packaging tool for any programming language.

What are these error messages are you’re talking about?