执行操作
from test_platform.tools.login_api import db
db.create_all()
日志
RuntimeError: 'cryptography' package is required for sha256_password or caching_sha2_password auth methods
解决方案
pip install cryptography
执行操作
from test_platform.tools.login_api import db
db.create_all()
日志
RuntimeError: 'cryptography' package is required for sha256_password or caching_sha2_password auth methods
解决方案
pip install cryptography