In fact, you do not need to change the validator settings or create a complex password first, and then change it. Instead, you can create a simple password, bypassing all password verification tools.
Open the django shell
python manage.py shell
Type of:
from django.contrib.auth.models import User
Press enter and then enter (for example, to use a password consisting only of the letter "a"):
User.objects.create_superuser('someusername', 'something@example.com', 'a')
Press Enter again and you're done.
User
source share