attributeerror: module 'jwt' has no attribute 'encode'
또.. jwt에러가...발생하였다...
몇번을 봐도..그렇게 봤던 에러인데..
pip freeze 명령어 확인해본결과, PyJWT는 없고 jwt 만 있었다...
내가 수도없이 검색해 보았을때, uninstall 진행하고 다시 install 하라고 해서 진행했기 때문이었다.
pip uninstall jwt
pip unisatll PyJWT
pip install PyJWT
unistall 진행하고..난 또 JWT를 설치했던것이다...
PyJWT 설치시 지원해주는 JWT와 JWT를 설치시 JWT의 지원이 다르기 때문이다..(의존성...)
+) 오늘의 덤
requiements로 설치를 했음에도 불구하고, 모두다 설치가 되지 않는경우에는
pip install -r requirements --no dependancy
또는
pip install
(명령어까먹음) # 명령어 다시 찾아보기
Author And Source
이 문제에 관하여(attributeerror: module 'jwt' has no attribute 'encode'), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@dldbwls492/attributeerror-module-jwt-has-no-attribute-encode저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)