pycharm报错'cryptography' package is required for sha256_password or caching_sha2_password auth methods
时间: 2023-12-23 10:23:42 浏览: 125
这个报错是因为在使用 MySQL 8.0 以上版本时,需要安装 cryptography 库来支持 sha256_password 或 caching_sha2_password 认证方式。你可以通过以下命令来安装 cryptography 库:
```
pip install cryptography
```
安装完成后,重新运行程序即可。
阅读全文