Search code examples
pythonpython-3.xtkinterexeauto-py-to-exe

Tkinter auto-py-to-exe distorted widgets when running in laptop with no python installed. in


I have made a python tkinter program and converted it to exe using auto-py-to-exe, it is not showing GUI properly on a laptop with no python installed.I have used (.place) to set proper alignment of widgets but it is showing distorted on a different laptop with no python installed. What could be the solution for this??? Can anybody help.


Solution

  • The best solution is to stop using place. pack and grid make for much more responsive UIs. With place it's up to you to account for different resolutions, different window sizes, and different fonts.