First post here ! Been lurking for quiiiite a while :)
Ive been coding a web scraper bot on pycharm, and everything was fine. Then i used Pyinstaller to make it into a single .exe Everything is great so far, but .. everytime i start the webdriver (im using Tkinter as gui with a Button to start/stop webdriver at will) the console show up. This doesnt happens in pycharm. So ive tryed to use pyinstaller arg like this: ps: i didnt add chromedriver as binary, and dont really want to, its in c:/ and that's it
pyinstaller --noconsole --onefile main.py - Console still appear
ive also tryed some others things : hide chromeDriver console in python How to hide Chromedriver console window?
but for some reason, it doesnt feel like my service.py has those line people keep saying about Still tryed to add em, didnt work. Maybe adding it to Pyinstaller with -add-binary could fix this ? Any direction is appreciated :) Thanks !