[Answer]-Django site management is faile

0👍

You should use same django version.
First you can see your django version on the good work computer. like this:

In [36]: import django

In [37]: django.VERSION
Out[37]: (1, 5, 5, 'final', 0)

From image we can find django version is 1.6.2
Maybe you can find where is wrong

1👍

You have different versions of Django on this two computers. Try using virtualenvs and add requirements to your project

Leave a comment