I have a python script that contains code to execute the command line. I generated .exe file from this script using pyinstaller. This is the command I use to freezes my python script:
pyinstaller --onefile --noconsole sriptName.py
When I open my exe file. The console still opens and shows the output of the command line executed in my script
How can I hide this console?