Django No module named rest_framework_simplejwt

If you are getting an error similar to

No module named rest_framework_simplejwt

OR

ImportError: Could not import 'rest_framework_simplejwt.authentication.JWTAuthentication

You have installed the wrong module. In your requirements.txt add following line

djangorestframework_simplejwt

or run following command in your virtual environment used in Django

pip install djangorestframework_simplejwt

Leave a Reply

(*) Required, Your email will not be published