본문 바로가기

프로그래밍/Jetson Nano

ImportError("The _imagingft C module is not installed")

위 에러는 pillow 라이브러리에서 버전이 올라갈때 _imagingft가 없어져서 나오는 문제다.

pillow를 낮은 버전으로 재설치 하여 해결했다.

하고 나면 낮은 버전의 pillow 때문에 다른 라이브러리에 문제있을거라는 에러가 나는데

일단 무시하도록 한다.

 

 

sudo apt-get install libfreetype6-dev 

pip uninstall pillow 

pip install pillow==2.8.2