user3332433
user3332433

Reputation: 25

Django site management is faile

My manage.py runserver is successd.

http://localhost:8000/admin/ 

And It can enter the management interface.

But it throws an error when I run this code using another computer.

The error is : http://paas-files.qiniudn.com/iRfEWVXNz1nSiztgfTBUOXNvqig2ycUiXFV03tHo.png

Is this what is wrong, thank you

Upvotes: 0

Views: 55

Answers (2)

orangleliu
orangleliu

Reputation: 772

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

Upvotes: 0

Łukasz Staniszewski
Łukasz Staniszewski

Reputation: 668

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

Upvotes: 1

Related Questions