반응형

 

<참조: https://way-code.tistory.com/10 >

 

파이썬 파일을 독립 실행파일로 만들기 : pyinstaller

 

pyinstaller는 *.py 파일을 *.exe 실행파일로 변환하는 프로그램입니다.

 

1) 다운로드 사이트에서 다운로드

 http://www.pyinstaller.org

 

 

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=(경로)

기본 경로는 파이썬 코드가 있는 위치입니다. 경로를 변경하려면, 경로를 지정해야 합니다.

  1. C:\python file\icon.ico     <-- 전체 경로 지정하는 방식 
  2. \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

 

<이상> 

반응형

+ Recent posts