CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

Problem when converting Custom Tkinter GUI to .exe

Open SmartCoder12345 opened this issue 1 year ago • 2 comments

I have created a Custom TKinter GUI. I converted it into .exe using the code of your documentation. The Problem is that it is only recognizing the modules of My main.py and not of custom tkinter's. I hope You understood my problem. Pls give me the solution 🥺

SmartCoder12345 avatar Mar 21 '24 04:03 SmartCoder12345

Duplicate

Akascape avatar Mar 22 '24 16:03 Akascape

Pyinstaller will create a dist folder, which contains your main.exe and customtkinter folder . That customtkinter folder contains all of the modules. whenever you move the exe file from dist, you must also move the customtkinter folder from dist

ByteJoseph avatar Mar 23 '24 09:03 ByteJoseph