[python] pyinstaller chromedriver 콘솔창 제거
2021. 8. 2. 17:05ㆍpython
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
selenium을 사용하기 위해 chromedriver를 프로젝트내에 패킹했고,
경로 잡아주고 실행이 되는 것을 확인 했다.
그래서 pyinstaller --noconsole 옵션도 주고
webdriver 옵션에
options.add_experimental_option('excludeSwitches', ['enable-logging']) 도 줘봤고..
options.add_argument("--headless")
options.headless = True 도 설정해봤는데 계속 뜨네????
google에 답이 있기에 추가로 검색 되도록 남깁니다.
파이참에서 shift 두번 누르면 All 검색이 가능하다
service.py로 검색해보면
webdriver\common 으로 끝나는 파일이 보이는데 열어서
아래와 같은 부분 찾아서 stdin=PIPE 뒤에 comma 찍고
[creationflags=0x08000000] <- 추가해주면 된다.
self.process = subprocess.Popen(cmd, env=self.env,
close_fds=platform.system() != 'Windows',
stdout=self.log_file,
stderr=self.log_file,
stdin=PIPE,
creationflags=0x08000000
)
이걸로도 안된다면
C:\Users\[사용자]\AppData\Local\Programs\Python\Python37\Lib\site-packages\selenium\webdriver\common\service.py 열어서
똑같이
creationflags=0x08000000
추가해주면 됩니다.
그 뒤에 다시 pyinstaller 해주면 console창은 안보인다 +_ +
'python' 카테고리의 다른 글
[python] pymysql 설치, python mysql 연결 (0) | 2024.02.13 |
---|---|
[python, selenium, centos] 캡쳐 한글깨짐 처리 (0) | 2021.12.27 |
[pyinstaller] 이미지 추가 (0) | 2021.06.09 |
return _compile(pattern, flags).sub(repl, string, count) TypeError: expected string or bytes-like object (0) | 2020.07.01 |
[python] 파이썬 설치 (0) | 2020.03.26 |