没有名为' model_utils'

时间:2016-08-06 01:25:36

标签: python django python-3.x django-model-utils

我使用的是Python 3.4.3和django 1.9.8。

在我的models.py中,我有

  

from model_utils.managers import InheritanceManager

但是发生了这个错误:

  

ImportError:没有名为' model_utils'

的模块

1 个答案:

答案 0 :(得分:11)

您需要安装django-model-utils:

pip install django-model-utils

documentation