When I run this code:
from tkinter import *
tk = Tk()
canvas = Canvas(tk, width=500, height=500)
canvas.pack()
human_image = PhotoImage(file='images/human.svg')
canvas.create_image(0, 0, anchor=NW, image=human_image)
I get this result:
macOS 11 (1107) or later required, have instead 11 (1106) !
How do I solve this?
Is it because my computer is too old?
I tried searching the web but nothing work for me.
Please can you respond as soon as possible because I got work that involves using Tkinter.