settings 数据库配置从sqlite改成 mysql
要安装基本的驱动,
然后迁移文件,报错了
错误信息:
cryptography is required for sha256_password or caching_sha2_password
需要安装cryptography
库,
pip install cryptography
然后又出意外了,
安装了半天真的安装cryptography 依赖库的时候报错了,
接下来 更新一下pip
python -m pip install --upgrade pip
然后就解决了,
最凶险的bug解决之道就蕴含在最稀松平常的解决问题的方法中.