py file to exe spesify name code example
Example 1: code for making an exe file for python
pip install pyinstaller
cd PathOfFile
pyinstaller --onefile -w ScriptName.py
(note that if you are using -w then your python file has to be an application and the file will be inside the "dist" folder)
Example 2: how to save python file as exe
import tkinter as tk
root= tk.Tk()
canvas1 = tk.Canvas(root, width = 300, height = 300)
canvas1.pack()
def hello ():
label1 = tk.Label(root, text= 'Hello World!', fg='green', font=('helvetica', 12, 'bold'))
canvas1.create_window(150, 200, window=label1)
button1 = tk.Button(text='Click Me',command=hello, bg='brown',fg='white')
canvas1.create_window(150, 150, window=button1)
root.mainloop()