Notice
Recent Posts
Recent Comments
Link
«   2024/05   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
05-16 04:51
관리 메뉴

nomad-programmer

[Programming/Python] pyinstaller 파일 용량 문제 본문

Programming/Python

[Programming/Python] pyinstaller 파일 용량 문제

scii 2020. 7. 9. 16:27

conda로 설치한 모듈을 pyistaller를 이용해 exe파일로 만들경우 엄청난 용량을 가진 파일이 생성된다.

이러한 문제를 해결하려면 conda install 모듈이 아닌 pip install 모듈로 설치한 파일이어야 한다.

281MB 파일이 pip install로 설치한 모듈로 exe파일을 만드니 84MB로 줄었다.

Comments