Geodjango-尝试运行服务器时出错

时间:2018-07-11 06:28:39

标签: django python-3.x geodjango

我正在尝试在新创建的项目中设置Geodjango。我遵循了Django文档中给出的所有步骤。但是当我尝试运行服务器时,会发生以下错误:

python.exe - Entery point not found

单击“确定”后,再次出现相同的窗口,然后单击“确定”,控制台上将出现以下消息:

self._handle = _dlopen(self._name, mode)
OSError: [WinError 127] The specified procedure could not be found

我的 Settings.py

DATABASES = {
'default': {
    'ENGINE': 'django.contrib.gis.db.backends.postgis',
    'NAME': 'test',
    'USER': 'postgres',
    'PASSWORD': '*********',
    'HOST': '127.0.0.1',
    'PORT': '5432',
    }
}

和我的 Models.py

from django.contrib.gis.db import models

# Create your models here.
class Shop(models.Model):
    name = models.CharField(max_length=100)
    location = models.PointField(blank=True, null=True)

有什么想法吗?

0 个答案:

没有答案