[Answer]-Createsuperuser in Django-pycharm

1👍

What version of python and django?

It looks like it was a bug fixed in http://forum.jetbrains.com/thread/PyCharm-2221

0👍

Goto : PyCharm > Tools > Run django Console >

from django.contrib.auth.models import User
User.objects.create_superuser(username='yourUsername', password='YourPassword', email='your@email.PK')

Cheers !

Leave a comment