Django Error Log

……
django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module.
Did you install mysqlclient?

解决方法:
在 python3 中,改变了连接库,改为了 pymysql 库,使用pip install pymysql 进行安装,然后在 init.py 文件中添加以下代码即可。
import pymysql
pymysql.install_as_MySQLdb()

猜你喜欢

转载自blog.csdn.net/weixin_33127753/article/details/84230319
今日推荐