12

我正在开发 django-oscar 项目以创建自定义电子商务应用程序。

当我使用python manage.py runserver命令运行我的项目时,我收到了这个错误“

from django.contrib.gis.geos import GEOSException, GEOSGeometry, fromstr
    ImportError: cannot import name GEOSException"

如何安装 GEOS?

4

1 回答 1

3

要使用 django 的地理空间功能,您需要额外安装相关库:

https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/

于 2014-08-15T05:38:17.200 回答