본문 바로가기
Python

pymysql error - RuntimeError: 'cryptography' package is required for sha256_password or caching_sha2_password auth methods

by 올엠 2024. 3. 7.
반응형

 

pymysql을 이용해서 mysql 인증시 아래와 같은 cryptography 오류가 발생한다면 해당 인증 모듈이 설치가 되어 있지 않아서이다.

아래 명령으로 cryptography 를 설치하도록 하자.

pip install cryptography
 
반응형