■ PyInstaller 모듈 : 실행 파일 생성시 –exclude 옵션을 사용해 실행 프로그램 용량 줄이기
▶ 실행 명령
1 2 3 |
pyinstaller -F -w --exclude pandas --exclude numpy main.py |
※ pandas와 numpy 모듈은 용량이 큰 모듈로 사용하지 않는 경우 파일 생성시 제외하는 것으로 가정했다.
■ PyInstaller 모듈 : 실행 파일 생성시 –exclude 옵션을 사용해 실행 프로그램 용량 줄이기
▶ 실행 명령
1 2 3 |
pyinstaller -F -w --exclude pandas --exclude numpy main.py |
※ pandas와 numpy 모듈은 용량이 큰 모듈로 사용하지 않는 경우 파일 생성시 제외하는 것으로 가정했다.