I im a beginner and have a question. I made an exe file of my code and everything when well. After i transported it to another computer i got a failed script error. Understandable cause i link a image on my local computer.
Do you know an easy way to link a image or import it that i can my programm with a background on other computers ?
Python 3.4
Thank u guys!
C = Canvas(frank, bg="blue", height=250, width=300)
filename = PhotoImage(file = "G:\\frankscripts\opdrachten\giphy.gif")
background_label = Label(frank, image=filename)
background_label.place(x=0, y=0, relwidth=1, relheight=1)
C.pack()