How do I create a superuser account in Django admin October 22, 2018 Python 0 Comments Just run following command $ python manage.py migrate $ python manage.py createsuperuser Related Posts Database connection between python & mysql zendnwar November 29, 2015 #!/usr/bin/python import MySQLdb db = MySQLdb.connect(“localhost”,”user” .. how to check python version in linux? zendnwar March 8, 2016 It’s very simple: python –version or python -V ..