how to export python to exe code example

Example 1: auto-py-to-exe with python3

$ pip install auto-py-to-exe

Example 2: python to exe

pip install pyinstaller

cd FullPathOfFile in cmd console
pyinstaller --onefile pythonScriptName.py
# a .exe file is created in the FullPathOfFile\dist

Example 3: how to convert python to exe

Install pip using
	pip install pyinstaller

in the directory of the source code file run
	pyinstaller .py

Example 4: how to run a .exe through python

import os
os.startfile("C:\Documents and Settings\flow_model\flow.exe")

Example 5: can you release a python program to an exe file

# In the command line, install pyinstaller
python -m pip install pyinstaller

# You might need to add pyinstaller to path. You can do that
# by adding the "scripts" folder in your python installation to path
pyinstaller yourprogram.py

Example 6: 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()

Tags:

Misc Example