ModuleNotFoundError No module named PIL

PIL 이란

PIL : Python Image Library 이다

파이썬 프로그램을 실행시키니 다음 같은 오류 메시지가 나왔다

1
2
    import PIL.Image
ModuleNotFoundError: No module named 'PIL'

PIL 모듈이 없다고 설치 해야 한다는데

1
pip install PIL

을 입력하니 안된다

해결방법

1
pip install image

이미지를 설치하면 된다