Python module 'jwt' has no attribute 'decode' 오류
안녕하세요! 오늘은 파이썬 Django, Flask에서 발생하는 다음 오류 해결 방법에 대해 알아보겠습니다. AttributeError: module 'jwt' has no attribute 'decode' AttributeError: module 'jwt' has no attribute 'encode' jwt와 PyJWT가 모두 설치된 경우에 발생하는 문제 import를 하게 되면 jwt를 불러와서 오류가 발생! pip list를 해보면 설치된 패키지 리스트를 확인할 수 있습니다. pip uninstall jwt 기존에 설치된 패키지를 삭제하고 다시 시도하면 정상 작동됩니다. pip uninstall PyJWT pip install PyJWT 계속 오류가 발생한다면, PyJWT도 삭제 후 재 설치 합니..