7

我正在使用 Python 3.4.3 和 django 1.9.8。

在我的models.py中,我有

从 model_utils.managers 导入 InheritanceManager

但是会出现这个错误:

ImportError:没有名为“model_utils”的模块

4

1 回答 1

17

你需要安装 django-model-utils:

pip install django-model-utils

文档

于 2016-08-06T01:45:20.587 回答