我知道这个问题已经被问过很多次了,但是我似乎还没有从其他任何帖子中得到答案。我只是想使用PIL从桌面加载图像:
from PIL import Image
pic = Image.open("/Users/23athreyad/Desktop/turkishflag.jpg")
pic.show()
而且我似乎总是会收到错误消息:
FileNotFoundError: [Errno 2] No such file or directory: '/Users/23athreyad/Desktop/turkishflag.jpg'
(base)
我已经指定了文件的完整路径,但不知道为什么它仍然找不到图像。
任何帮助表示赞赏...