pip install 을 사용해 설치했는데 인식하지 못할 때.
Django 프로젝트를 진행하는 중에 pip install Pillow 로 프로그램 설치를 진행 후 마이그레이션을 진행하는데[bash]pip install Pillowpython manage.py makemigration appname 아래와 같은 오류가 발생했다. SystemCheckError: System check identified some issues: ERRORS:posts.Post.thumbnail: (fields.E210) Cannot use ImageField because Pillow is not installed. HINT: Get Pillow at https://pypi.org/project/Pillow/ or run command "python -m pip instal..