Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Tkinter를 사용하여 Python 3 앱을 .exe로 컴파일하는 방법은 무엇입니까?

<시간/>

Python은 풍부한 확장 및 패키지 라이브러리로 잘 알려져 있습니다. 라이브러리에서 필요한 패키지를 가져와서 설치할 수 있습니다. 그러나 Windows 운영 체제에서 실행 파일로 Tkinter 응용 프로그램을 실행해야 하는 경우 Pyinstaller 를 사용할 수 있습니다. 파이썬에서 패키지. Python 기반 응용 프로그램을 기본 실행 파일(or.exe)로 변환합니다.

Tkinter 기반 애플리케이션을 실행 파일로 컴파일하는 단계를 따르십시오.

  • 'pip install pyinstaller를 사용하여 Pyinstaller를 설치합니다. '.

  • 애플리케이션 파일이 있는 동일한 디렉토리에서 명령 또는 셸을 열고 pyinstaller --onefile app.py 명령을 사용하여 파일을 실행합니다. . 바이너리 및 기타 소스 파일과 같은 필요한 폴더를 생성합니다.

  • 응용 프로그램의 실행 파일이 있는> dist 폴더로 이동합니다.

  • .exe 파일을 실행합니다.

예시

app.py

#Import the required libraries
from tkinter import *

#Create an instance of Tkinter Frame
win = Tk()

#Set the geometry
win.geometry("750x350")

def display_text():
   Label(win, text= "Hey There! Welcome to TutorialsPoint", font= ('Helvetica 22 bold'), foreground="navy").pack()

#Create a Button
Button(win, text= "Click Me", font= ('Helvetica 13 bold'), foreground= "OrangeRed3", background= "White", command= display_text).pack(pady=50)
win.mainloop()

출력

dist 폴더에 아래와 같이 .exe 파일이 생성됩니다.

Tkinter를 사용하여 Python 3 앱을 .exe로 컴파일하는 방법은 무엇입니까?

응용 프로그램의 실행 파일을 실행하면 버튼이 있는 창이 표시됩니다.

Tkinter를 사용하여 Python 3 앱을 .exe로 컴파일하는 방법은 무엇입니까?

"Click Me" 버튼을 클릭하면 동일한 창에 텍스트 레이블이 표시됩니다.

Tkinter를 사용하여 Python 3 앱을 .exe로 컴파일하는 방법은 무엇입니까?