This is my first time creating an application, so I'm not exactly sure what I did wrong. How do I remove or hide this command prompt appearing every time I launch the converted python in exe?

This is my first time creating an application, so I'm not exactly sure what I did wrong. How do I remove or hide this command prompt appearing every time I launch the converted python in exe?

Thanks Guys for the link. This works for me: "edit the your_script.spec file to rid yourself of the console.
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='main',
debug=False,
strip=False,
upx=True,
console=True )
Simply change the console value to False. Then run:
pyinstaller your_script.spec"
SOURCE: Getting rid of console output when freezing Python programs using Pyinstaller