일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- c# winform
- gitlab
- git
- 구조체
- 깃
- Python
- 다트 언어
- Flutter
- C++
- C# delegate
- jupyter
- jupyter lab
- 도커
- 포인터
- Algorithm
- vim
- c# 추상 클래스
- Houdini
- 플러터
- dart 언어
- docker
- c#
- Data Structure
- c# 윈폼
- HTML
- github
- C언어 포인터
- Unity
- 유니티
- c언어
Archives
- Today
- Total
목록pyinstaller (2)
nomad-programmer
[Programming/Python] pyinstaller 파일 용량 문제
conda로 설치한 모듈을 pyistaller를 이용해 exe파일로 만들경우 엄청난 용량을 가진 파일이 생성된다. 이러한 문제를 해결하려면 conda install 모듈이 아닌 pip install 모듈로 설치한 파일이어야 한다. 281MB 파일이 pip install로 설치한 모듈로 exe파일을 만드니 84MB로 줄었다.
Programming/Python
2020. 7. 9. 16:27
[Programming/Errors] ModuleNotFoundError: No module named 'pkg_resources.py2_warn'
pyinstaller를 이용해 exe파일 생성 후 실행시키니 ModuleNotFoundError: No module named 'pkg_resources.py2_warn' 라는 오류가 발생했다. 구글링 결과 hiddenimports 메뉴 부분에 추가하면 된다고 한다. 그래서 아래처럼 추가하여 해결하였다. 만약 OpenCV를 사용하였는데 "cv2" 임포트 에러가 발생하면, 아래와 같이 binaries에 dll을 추가해준다. a = Analysis(['main.py'], pathex=['D:\\workspace\\python\\test', 'D:\\workspace\\python\\test\\widgets\\preference', 'D:\\workspace\\python\\test\\widgets\\scre..
Programming/Errors
2020. 7. 8. 19:57