본문 바로가기
IT/그 외 IT

[OpenStack] CryptographyDeprecationWarning

by 초록술 2023. 3. 14.
반응형

OpenStack 설치 시  CryptographyDeprecationWarning

OpenStack 설치 중 발생하는  CryptographyDeprecationWarning 메시지 관련하여 조치 방법에 대해 알려드립니다.

CryptographyDeprecationWarning
CryptographyDeprecationWarning

cryptography package warning 는 실제 문제를 일으키는 error 는 아닙니다만 자꾸만 발생하는 메시지입니다.

openstack project create --domain default --description "Service Project" service
/usr/lib/python3/dist-packages/secretstorage/dhcrypto.py:15: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes
/usr/lib/python3/dist-packages/secretstorage/util.py:19: CryptographyDeprecationWarning: int_from_bytes is deprecated, use int.from_bytes instead from cryptography.utils import int_from_bytes

 

cryptography 패키지 warning을 없애기 위해 아래와 같이 2개의 명령어를 입력하면 됩니다.

 

pip3 uninstall matrix-synapse twisted cryptography bcrypt cftp

pip3 install cryptography==3.2

 

CryptographyDeprecationWarning 조치 방법
CryptographyDeprecationWarning 조치 방법

감사합니다.

반응형

댓글