geodjango 同步数据库错误。来自 geodjango 教程
我已经按照geodjango安装(windows XP)和教程做到了完美 我正在运行 django 1.2 当我到达syncdb并运行时,我收到以下内容。
raise ImproperlyConfigured(error_msg)
django.core.exceptions.ImproperlyConfigured:'django.db.backends.postgis' isn
an available database backend.
Try using django.db.backends.XXX, where XXX is one of:
'dummy', 'mysql', 'oracle', 'postgresql', 'postgresql_psycopg2', 'sqlite3
Error was: No module named postgis.base
我尝试更改为“django.db.backends.postgresql_psycopg2”作为替代方案 但后来我收到了这样的回复:
AttributeError: 'DatabaseOperations' object has no attribute 'geo_db_type'
当我尝试 posgresql:
**raise ImproperlyConfigured("Error loading psycopg module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading psycopg module: No mo
dule named psycopg**
它不应该是我成功下载并安装的 postgis 吗?为什么它不工作?我是新人,我正在努力学习,因此我们将不胜感激任何帮助。
I have followed the geodjango installation(windows XP) and tutorial to perfection
I am running django 1.2
When I get to syncdb and run I receive the following.
raise ImproperlyConfigured(error_msg)
django.core.exceptions.ImproperlyConfigured:'django.db.backends.postgis' isn
an available database backend.
Try using django.db.backends.XXX, where XXX is one of:
'dummy', 'mysql', 'oracle', 'postgresql', 'postgresql_psycopg2', 'sqlite3
Error was: No module named postgis.base
I tried changing to 'django.db.backends.postgresql_psycopg2' as an alternative
But then I receive this response:
AttributeError: 'DatabaseOperations' object has no attribute 'geo_db_type'
When I try posgresql:
**raise ImproperlyConfigured("Error loading psycopg module: %s" % e)
django.core.exceptions.ImproperlyConfigured: Error loading psycopg module: No mo
dule named psycopg**
Is it not supposed to be postgis which I successful downloaded and installed? why isn’t it working? I am new and I am trying to learn so any help would be greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
发布评论
评论(2)
在按照 geodjango 站点上的说明并使用 Homebrew 安装软件包后,我在 Mac OS X 10.6 上遇到了同样的错误。显然,Geodjango 文档给出了一些关于如何安装它的不正确/过时的说明。为了使 Geodjango 工作,我遵循了以下几个步骤:
现在,GeoDjango 1.4 与 PostGIS 2.0 不能很好地配合(这是我按照 GeoDjango 文档中的说明安装的 Homebrew 版本)。所以,我需要安装 PostGIS 1.5。我使用以下终端命令执行此操作(为此,您必须安装 Homebrew):
brew tap 自制软件/版本 酿造安装postgis15 brew untap 自制程序/版本
PostGIS 1.5 与 PostGreSQL 9.2(这是我按照 Geodjango 文档的说明安装的 Homebrew 版本)配合得不好。所以,我安装了 PostGreSQL 9.1。我完全忘记了安装 PostGreSQL 9.1 时使用的 Homebrew 命令,但它们应该与上一步类似。
就我而言,前面的步骤不足以让 Geodjango 运行。当我再次尝试在 Django 中运行“syncdb”时,我在终端中发现了一个新错误:
django.core.exceptions.ImproperlyConfigured:加载 psycopg 模块时出错: 没有名为 psycopg 的模块
我最初以为我的 psycopg2 和 PostgreSQL9.1 副本不在我的 PYHTONPATH 上,所以我添加了它们。我还尝试确保 django 运行的是 PostgreSQL 9.1 而不是 9.2。我使用了“initdb /usr/local/var/postgres”。
然后我需要做一些数据库配置。我在 PostGIS 中设置了一个模板,并为数据库设置了一个“角色”(/用户)。为此,我按照 Geodjango 文档中的说明进行操作。我收到了很多错误,但通过 Google 搜索并很容易找到解决方案。
然后 GeoDjango 开始正常工作了!
该来源是我发现的最有用的来源,并链接到其他有用的网址,这些网址更详细地介绍了其中一些问题: http://pragmaticstartup.wordpress.com/2012/09/26/installing-django-postgis-postgres-on-os-x -版本地狱/
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
问题是,在
settings.py
中应该可以
做到这一点。
The problem is, in
settings.py
it is supposed to be
that should do it.