반응형
<참조: https://way-code.tistory.com/10 >
파이썬 파일을 독립 실행파일로 만들기 : pyinstaller
pyinstaller는 *.py 파일을 *.exe 실행파일로 변환하는 프로그램입니다.
1) 다운로드 사이트에서 다운로드
2) pyinstaller를 설치
3) 명령어 사용하기
1. 다른 패키지 파일 없이 exe 파일 생성하는 옵션: -F (대문자) 또는 --onefile
pyinstaller sameple.py -F
pyinstaller sameple.py --onefile
2. 실행 시 콘솔창 사용 안함: -w 또는 --noconsole
pyinstaller sample.py -w
pyinstaller sample.py --noconsole
3. 실행 파일에 아이콘 등록: -i=(경로) 또는 --icon=(경로)
기본 경로는 파이썬 코드가 있는 위치입니다. 경로를 변경하려면, 경로를 지정해야 합니다.
- C:\python file\icon.ico <-- 전체 경로 지정하는 방식
- \icons\icon.ico <-- 코드 경로 하위에 있는 \icons\icon.ico 지정 방식
pyinstaller sample.py -i=icon.ico
pyinstaller sample.py --icon=icon.ico
4. 관리자 권한 부여: --uac-admin
[주의] -F / --onefile 옵션과 함께 사용 안됨
pyinstaller --uac-admin sample.py
<이상>
반응형
'소프트웨어 개발&환경' 카테고리의 다른 글
파이썬, 아나콘다와 텐서플로우, 케라스 설치 (0) | 2020.01.03 |
---|---|
스크래핑, 크롤링 (0) | 2019.12.26 |
스크래치 3.0 발표 및 스크래치 2.0 다운로드 (0) | 2019.01.11 |
이클립스 쇼트컷 키 Keyboard_shortcuts_(3.0) (0) | 2018.08.04 |
이미지 비교 및 특징점 자료 링크 (0) | 2018.07.16 |