Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- VirtualBox
- 프로그래머스
- Leetcode 70
- without nohup.out
- 걸쳐서 그림 넣기
- apt autoremove
- url reference
- latex 첨자
- vim 찾아 바꾸기
- Leetcode 121
- apt clean
- vi/vim 명령어
- 프로그래머스 구명보트
- Resolution Changing
- linux prompt color
- gnuplot csv
- LaTeX figure
- vim 괄호 비활성화
- 프로그래머스 실패율
- Python Imaging Library
- vim set noshowmatch
- git commit message
- python3
- 프로그래머스 체육복
- csv x range
- tensorflow model load
- Climbing Stairs
- vim 치환
- vi/vim commands
- linux bash
Archives
- Today
- Total
기억노트
ImportError: No module named PIL 해결 본문
PIL 은 Python Imaging Library 의 약자이다.
Python 에서 PIL을 import 할 때 에러가 나는 경우가 있는데,
'ImportError: No module named PIL' 은
PIL 이 python 에 설치되어 있지 않아 발생하는 오류이다.
그러므로 PIL 을 설치해주면 해결할 수 있다.
PIL 은 라이브러리 이름이 PIL 이 아니라서
$ sudo pip install pillow image
위의 pillow 와 image 라이브러리를 설치해야한다.
'Programming > VirtualBox + Ubuntu' 카테고리의 다른 글
ValueError: ('Unrecognized keyword arguments:', [u'ragged']) 해결 (0) | 2020.05.24 |
---|---|
'Some index files failed to download. They have been ignored or old ones used instead' 해결 (0) | 2020.05.19 |
VirtualBox + Ubuntu 해상도 (resolution) 변경 (0) | 2020.04.25 |
VT-x is disabled in the BIOS for all CPU modes 해결 (0) | 2020.04.23 |