0

所以我为heroku的构建包安装了多个构建包

https://github.com/ddollar/heroku-buildpack-multi.git

我有 .buildpacks 文件

https://github.com/cyberdelia/heroku-geo-buildpack.git#1.3
https://github.com/heroku/heroku-buildpack-python

安装工作,但是当我运行 python manage.py makemigrations 我得到这个错误:

django.core.exceptions.ImproperlyConfigured: Cannot determine PostGIS version 
for database "d34ce1ddsg9nkp". GeoDjango requires at least PostGIS version 1.3. 
Was the database created from a spatial database template?

我尝试了多种在 settings.py 中设置数据库的方法,例如:

        GEOS_LIBRARY_PATH = environ.get('GEOS_LIBRARY_PATH')
        GDAL_LIBRARY_PATH = environ.get('GDAL_LIBRARY_PATH')
and
        GEOS_LIBRARY_PATH = "{}/libgeos_c.so".format(environ.get('GEOS_LIBRARY_PATH'))
        GDAL_LIBRARY_PATH = "{}/libgdal.so".format(environ.get('GDAL_LIBRARY_PATH'))

我究竟做错了什么?

4

1 回答 1

1

好的,所以我通过运行这些命令在 heroku 上启用 postgis 来解决这个问题

heroku pg:psql
create extension postgis;

然后我运行这个命令来查看我在 heroku 上的版本

SELECT PostGIS_full_version();

然后我把这是我的 settings.py 文件

POSTGIS_VERSION = (2, 1, 5)

和中提琴它的作品!

于 2015-03-31T19:11:25.180 回答