Reputation: 5802
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
Reputation: 599610
Django 1.4 is a very old version. django-modeltranslation clearly relies on a more recent version of Django.
Upvotes: 1