Rads
Rads

Reputation: 355

from dajax.core import Dajax gives cannot import name simplejson error

When I run

from dajax.core import Dajax

It gives

cannot import name simplejson

Whats the fix?

I have installed dajax libraries along with django.

Upvotes: 0

Views: 365

Answers (1)

catavaran
catavaran

Reputation: 45575

This is a known bug. Simplejson is deprecated in django 1.7 so Dajax is outdated.

Switch to django 1.6 or to django-dajax-ng.

Upvotes: 1

Related Questions