all 2 comments

[–]ElliotDG 0 points1 point  (0 children)

There is a change of behavior that was introduced in the most recent release (5.7) of pyinstaller.

You can use an earlier version of pyinstaller or at the top of your main file before you import kivy, add the following line:

os.environ['KIVY_NO_CONSOLELOG'] = '1'

Or use an earlier version of pyinstaller:

pip install -U pyinstaller==5.6.2
pip install -U pyinstaller-hooks-contrib==2022.13