Python django AttributeError: module 'jwt' has no attribute 'decode', AttributeError: module 'jwt' has no attribute 'encode' 해결 방법
AttributeError: module 'jwt' has no attribute 'decode'
AttributeError: module 'jwt' has no attribute 'encode'
Python Django 프로젝트에서 볼 수 있는 에러입니다.
간단하게 PyJWT 모듈 설치로 해결할 수 있습니다.
pip install PyJWT
PyJWT를 설치해도 되지 않을 시
jwt, PyJWT를 모두 지우고 다시 PyJWT를 설치하신 뒤 시도해보시면 되겠습니다.
pip uninstall jwt
pip uninstall PyJWT
pip install PyJWT
도움이 되셨다면 공감, 댓글 부탁드립니다!
궁금하신 점이나 요청사항은 언제든지 말씀해주세요!
피드백도 언제나 환영입니다!
감사합니다.
'Developer > Python' 카테고리의 다른 글
Mac Anaconda 설치 방법 (0) | 2021.07.19 |
---|---|
Django database is locked 해결 방법 (0) | 2021.03.21 |
Python print colored text with colorama- 파이썬 colorama 사용해 쉽게 출력 문자 색상, 배경 색상 변경 (0) | 2021.01.14 |
Python 날짜 차이 계산, 날짜 비교 방법 (1) | 2021.01.09 |
Python 날짜, 시간 계산 방법 (오늘, 어제, 한달 전, 일년 전, 내일, 한달 후, 일년 후, 날짜 시간 더하기, 날짜 시간 빼기) (2) | 2021.01.09 |
댓글