I have a simple tkinter GUI I've been working on.
I am familiar with changing the icon of the root window using root.iconbitmap("/path/to/icon.ico")
and this is what I have been using while writing and testing my code.
However, I am now at the stage of building an installer for the app, which I am doing using cx_freeze. I can do this and install the app on the same pc I wrote it on just fine. However, if I install it on a different pc, it will not work as the specified icon path will not exist on a different pc.
I would like to be able to have the custom window icon appear on other pc's without having to distribute the .ico file along with the installer.
Is there any way I can do this?