To update images on a tkinter canvas, you can use the itemconfig method to change the properties of the image item. First, create an image item on the canvas using the create_image method, and store the reference to the image item. Then, when you want to update the image, use the itemconfig method with the reference to the image item and provide the new image as the parameter. This will replace the existing image with the new image on the canvas.