개발, 웹, 블로그/IT, 컴퓨터 상식
Python 스크립트 excutable binary(exe) format으로 사용 방법
삼성동고양이
2020. 5. 26. 07:37
반응형
pyinstaller를 통해서 Python Script를 Executable Binary로 변환할 수 있다.
1. 설치 방법
>> pip install pyinstaller |
2. pyinstaller로 Python Script를 Binary로 변경
>> pyinstaller --onefile <filename>.py |
3. 실행 결과
- "__pycache__", "build", "dist" 등의 폴더가 생기고 "<filename>.spec"등의 파일이 생성된다.
- dist 폴더 안에 exe 파일이 생성되어 있다.
4. Console Message가 출력되지 않는 바이너리 만들기
>> pyinstaller --onefile --noconsole <filename>.py |
5. 실행 파일 아이콘 넣기
>> pyinstaller --icon=<icon filename>.ico --onefile --noconsole <filename>.py |
6. icon image converting site
https://icoconvert.com/ |
반응형