我正在开发 django-oscar 项目以创建自定义电子商务应用程序。
当我使用python manage.py runserver
命令运行我的项目时,我收到了这个错误“
from django.contrib.gis.geos import GEOSException, GEOSGeometry, fromstr
ImportError: cannot import name GEOSException"
如何安装 GEOS?
我正在开发 django-oscar 项目以创建自定义电子商务应用程序。
当我使用python manage.py runserver
命令运行我的项目时,我收到了这个错误“
from django.contrib.gis.geos import GEOSException, GEOSGeometry, fromstr
ImportError: cannot import name GEOSException"
如何安装 GEOS?
要使用 django 的地理空间功能,您需要额外安装相关库:
https://docs.djangoproject.com/en/dev/ref/contrib/gis/install/