반응형

AttributeError: module 'bcrypt' has no attribute '__about__' 오류 발생 시

 

[화면] 오류 메시지

File "C:\Users\USER\.virtualenvs\fastapi-app-L6h5EJJC\Lib\site-packages\passlib\handlers\bcrypt.py", line 620, in _load_backend_mixin

    version = _bcrypt.__about__.__version__

              ^^^^^^^^^^^^^^^^^

AttributeError: module 'bcrypt' has no attribute '__about__'

 

[해결 방법]

 

사용중인 bcrypt 버그로 추정되므로 아래처럼 4.0.1 버전으로 설치한다.

 

pip uninstall bcrypt            <-- 설치된 버전 삭제 

pip install bcrypt==4.0.1   <-- 4.0.1 버전으로 설치 

 

 

반응형

+ Recent posts