pydenticon과 django-pydenticon은 다르니
django-pydenticon을 pip install 해주길 바랍니다~~
#prob1 , debug_toolbar 못찾을때
ModuleNotFoundError: No module named 'debug_toolbar'
#solution
pip install django-debug_toolbar
#prob2
ModuleNotFoundError: No module named 'corsheaders'
#solution
pip install django-cors-headers
#prob3
#solution, simplejwt DRF 를 다운 받아줍니다.!
pip install djangorestframework-simplejwt
#settings.py 혹은 common.py (분리 해놓으셨다면~~ 파일명에 맞는 세팅파일에서)
REST_FRAMEWORK = {
"DEFAULT_PERMISSION_CLASSES": ["rest_framework.permissions.IsAuthenticated",],
"DEFAULT_AUTHENTICATION_CLASSES": [
'rest_framework.authentication.SessionAuthentication',
'rest_framework.authentication.BasicAuthentication',
'rest_framework_simplejwt.authentication.JWTAuthentication',
],
}
#prob4
버전 이슈로 인한 ugettext 어쩌구 에러가 뜬다면
아래 코드를 settings.py에 추가..
#settings.py
import collections
if not hasattr(collections, 'Callable'):
collections.Callable = collections.abc.Callable