3

我想在我的 django models.py 中进行此导入:

from django.contrib.postgres.fields import ArrayField

我阅读了此文档https://docs.djangoproject.com/en/dev/ref/contrib/并在 settings.py 的 INSTALLED_APPS 中添加了“django.contrib.postgres”,但是当我尝试同步我的数据库或运行服务器我得到“ImportError:没有名为 postgres 的模块”

还有什么我应该做或安装的吗?django.contrib.postgres 是核心发行版的一部分,对吗?

这是回溯:

Traceback (most recent call last):
  File "manage.py", line 10, in <module>
    execute_from_command_line(sys.argv)
  File "c:\Python27\lib\site-packages\django\core\management\__init__.py", line 399, in execute_from_com
    utility.execute()
  File "c:\Python27\lib\site-packages\django\core\management\__init__.py", line 392, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "c:\Python27\lib\site-packages\django\core\management\base.py", line 242, in run_from_argv
    self.execute(*args, **options.__dict__)
  File "c:\Python27\lib\site-packages\django\core\management\base.py", line 280, in execute
    translation.activate('en-us')
  File "c:\Python27\lib\site-packages\django\utils\translation\__init__.py", line 130, in activate
    return _trans.activate(language)
  File "c:\Python27\lib\site-packages\django\utils\translation\trans_real.py", line 188, in activate
    _active.value = translation(language)
  File "c:\Python27\lib\site-packages\django\utils\translation\trans_real.py", line 177, in translation
    default_translation = _fetch(settings.LANGUAGE_CODE)
  File "c:\Python27\lib\site-packages\django\utils\translation\trans_real.py", line 159, in _fetch
    app = import_module(appname)
  File "c:\Python27\lib\site-packages\django\utils\importlib.py", line 40, in import_module
    __import__(name)
ImportError: No module named postgres
4

2 回答 2

4

django.contrib.postgres将是1.8发布的一部分。

于 2014-08-22T12:39:26.733 回答
1

幸运的是,django 中有几个非官方的 postgresql 数组实现。其中最值得注意的是djorm-pgarray。当 Django 1.8 最终推出时,另一个选项是django-dbarray,迁移应该不会太困难。

于 2014-09-26T13:41:18.173 回答