pyinstaller 실행파일 만들기

 

1. 하나의 파일 - 로딩 속도 느림

pyinstaller --onefile -n TestExe --hidden-import PyQt5.sip Test.py

 

2. 관련 Lib 따로 구성됨 - 로딩 속도 빠름.
pyinstaller -n TestExe --hidden-import PyQt5.sip Test.py

'Programming > Python' 카테고리의 다른 글

web 사용  (0) 2023.08.03
numpy.clip(array, min, max)  (0) 2023.06.03
내장함수 eval  (0) 2023.04.08
내장함수 zip  (0) 2023.04.08
내장함수 enumerate  (0) 2023.04.08

+ Recent posts