Python3 ModuleNotFoundError: Нет модуля с именем 'rest_framework_jwt'

я хочу импортировать из jwt, но получаю ошибку строка 12, в from rest_framework_jwt.settings import api_settings ModuleNotFoundError: Нет модуля с именем 'rest_framework_jwt'

Для python 3

pip3 install djangorestframework-jwt

Для python 2 и python

pip install djangorestframework-jwt

Проверьте свою установку, это отдельный пакет: pip install djangorestframework-jwt

Также попробуйте включить это в settings.py: REST_FRAMEWORK = { 'DEFAULT_PERMISSION_CLASSES': ( 'rest_framework.permissions.IsAuthenticated', ), 'DEFAULT_AUTHENTICATION_CLASSES': ( 'rest_framework_jwt. authentication.JSONWebTokenAuthentication', 'rest_framework.authentication.SessionAuthentication', 'rest_framework.authentication.BasicAuthentication', ), }

Вернуться на верх