Inky Phat can't find image library for gimp

This is my code
`from inky.auto import auto
inky_display = auto()
inky_display.set_border(inky_display.WHITE)

from PIL import Image, ImageFont, ImageDraw

img = Image.new(“P”, (inky_display.WIDTH, inky_display.HEIGHT))

img = Image.open(“home/pi/downloads/inky.png”)
width, height = img.size
print(width, height)
print(img.format, img.size, img.mode)
inky_display.set_image(img)
inky_display.show()
`
The error is no such file found. Problem is that its there!!! What am I doing wrong?

img = Image.open(“home/pi/downloads/inky.png”)

This is a guess, but I’m fairly sure you need a slash (“/”) in front of home.