So I made a super simple program with 1 import (it being pysimplegui
) and when i compile it the size is 9 mb? The py file is just 1 kb...
Is there a way to make it be less than 8 mb atleast?
Here is my code:
import PySimpleGUI as sg
layout = [[sg.Text('Test app')]]
window = sg.Window('test app', layout, finalize=True)
while True:
event, values = window.read()
if event == sg.WIN_CLOSED:
break
window.close()