Chromdriver를 사용하도록 설정하기
if getattr(sys, 'frozen', False) and hasattr(sys, "_MEIPASS"):
driver_path = os.path.join(sys._MEIPASS, "chromedriver.exe")
driver = webdriver.Chrome()
# print('running in a Pyinstaller bundle')
else:
driver = webdriver.Chrome()
# print('running in a normal Python process')
pyinstaller로 실행파일 생성
pyinstaller -w -F "파이썬 소스코드 경로"
'Python > 업무자동화' 카테고리의 다른 글
[Python] 대량의 업데이트 파일 일정한 파일 크기 당 배포 일정 수립 (1) | 2024.08.14 |
---|---|
[python] zipfile.ZipFile로 압축 해제 시 오류 (0) | 2024.07.10 |
[Python] 폴더, 파일, ZIP 파일 목록 출력 (0) | 2024.01.25 |
[Python] Pyinstaller 실행파일 만들기 (0) | 2024.01.24 |
Python을 활용한 파일, 폴더명 읽기, 압축 파일 해제 (0) | 2024.01.19 |