I have a python program that I am converting to a .exe file. I have compiled with Pyinstaller and all is working fine. I now want to get rid of the console window as I have a pyqt user interface. I have tried:
pyinstaller --onefile --windowed --icon=favicon.ico main.py
Its compiling fine and running however when chromedriver is activated it doesnt show up. It works fine when i do not use --windowed or --noconsole.
Anyone had this problem before?
Thanks Jamie