python错误记录

Posted yifengs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python错误记录相关的知识,希望对你有一定的参考价值。

raise ImproperlyConfigured("Error loading mysqldb module: %s" % e) django.core.exceptions.ImproperlyConfigured: Error loading MySQLdb module: No module named ‘MySQLdb‘

没有在__init__.py文件中导入pymysql

__init__.py

import pymysql
pymysql.install_as_MySQLdb()

 

goods.GoodsImage.image: (fields.E210) Cannot use ImageField because Pillow is not installed.
HINT: Get Pillow at https://pypi.python.org/pypi/Pillow or run command "pip install Pillow".

没有安装pillow

pip install pillow

 

以上是关于python错误记录的主要内容,如果未能解决你的问题,请参考以下文章

通过Python日志记录模块将意外错误记录到文件中

Python学习记录-异常捕获

通过 Python 日志记录模块将意外错误记录到文件中

Python错误日常记录(持续更新)

使用日志记录 Python 保存严重错误

使用 python 的 logging 模块记录所有异常和错误