전체 글 (37) 썸네일형 리스트형 [Django] InconsistentMigrationHistory 오류 구글 연동을 위해 allauth 설치 후 settings.py 에서 'django.contrib.sites' 를 나중에 추가한 뒤 migrate하자, InconsistentMigrationHistory 오류가 발생했다. setting.py 'django.contrib.sites', 'allauth', # 'allauth.account', 'allauth.socialaccount', 'allauth.socialaccount.providers.google', 문제가 된 'allauth.account' 를 커맨드아웃(#) 시킨 뒤 migrate하니 해결되었다. 오류 해결 후 #를 지우고 계속 진행한다. [Django] LoginRequiredMixin, UserPassesTestMixin LoginRequiredMixin 로그인 체크 UserPassesTestMixin 접근 가능한 사용자 지정 [파이썬] Fillow 라이브러리 설치 이미지 파일을 관리하기 위해 models.py에 imageField를 추가하고 마이그레이션을 하면 오류가 발생한다. Fillow 라이브러리를 설치하면 해결된다. Fillow : 이미지를 처리하기 위한 라이브러리 F:\github\django_blog(main -> origin) (venv) λ python manage.py makemigrations SystemCheckError: System check identified some issues: ERRORS: blog.Post.head_image: (fields.E210) Cannot use ImageField because Pillow is not installed. HINT: Get Pillow at https://pypi.org/project/Pi.. 이전 1 ··· 7 8 9 10 11 12 13 다음