[Django]-Cannot import name six Django-CMS

2👍

You should have Django version >=1.4.5. It worked for me.

👤Nilesh

4👍

Just ran into this same error, the six import error is being caused by an incompatible version of django-mptt. This should do the trick:

$ pip install django-mptt==0.5.2

Leave a comment