How to package into an exe #48
-
so with customtkinter, you have to add the data for customtkinter for pyinstaller to properly package the script into an exe file. Do you also have to do the same for CTkTable? for reference, you have to package your script like this for customtkinter: pyinstaller --noconfirm --onedir --windowed --add-data "CustomTkinter Location/customtkinter;customtkinter/" "Path to Python Script" |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not necessary, pyinstaller will automatically pack it. But in case you find any errors, you can pack it separately. A full guide for pyinstaller is given here: TomSchimansky/CustomTkinter#939 |
Beta Was this translation helpful? Give feedback.
@pmarbibi12
Not necessary, pyinstaller will automatically pack it. But in case you find any errors, you can pack it separately.
A full guide for pyinstaller is given here: TomSchimansky/CustomTkinter#939