TheNone
TheNone

Reputation: 5802

Virtualenv and import six module erro in django 1.4

We install virtualenv inside every project in server:

virtualenv env

source env/bin/activate

pip install -r requirements.txt

But I have stil from django.utils.six import with_metaclass ImportError: No module named six error in syncdb. I have this problem with django-modeltranslation.

Why I have this error? I could import six in python.

Upvotes: 0

Views: 270

Answers (1)

Daniel Roseman
Daniel Roseman

Reputation: 599610

Django 1.4 is a very old version. django-modeltranslation clearly relies on a more recent version of Django.

Upvotes: 1

Related Questions