12

I am working on django-oscar project to create custom eCommerce application.

When i run my project using python manage.py runserver command, I got this error "

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

How to install GEOS?

Anshul Goyal
  • 73,278
  • 37
  • 149
  • 186
rajan patel
  • 121
  • 1
  • 4

1 Answers1

3

To use the geospatial functionality of django, you need to additionally install the related libraries:

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

monkut
  • 42,176
  • 24
  • 124
  • 155