tkinter에서 이미지를 못 읽을 때 (Python)
·
Trouble Shooting/Python
🎈 문제 해결 방법 https://pypi.org/project/pillow/ 에서 PIL 를 다운받고 from tkinter import * from PIL import ImageTk, Imagebg_img =ImageTk.PhotoImage(Image.open('./images/right.png'))처럼 적용하니 해결할 수 있었다(_tkinter.TclError: couldn't open "right.png": no such file or directory 에러해결) + 나중에 안 사실 맥북에는 기본적으로 설치되는 default-파이썬이 존재하지만 매우 낮은 버전이라 tkinter GUI를 캐치하지 못했던 것이다 이는 PIL을 깔 필요 없이 homebrew를 이용하여 파이썬을 다운하면 되는 간단한 ..