What about python, a blank page, 8MB?

packaged in pyinstaller

import tkinter as tk

jm = tk.Tk()

jm.title("")

jm.mainloop()

Jul.12,2022

python is a dynamic language. The packaged content includes not only the program dependent libraries, but also the python interpreter.
ways to reduce the size:
use from. Import... Reduce the scope of dependency,
further compress the packaging results,
if only consider executable files, can be divided into executables and libraries, not packaged into a file.

Menu