[Answer]-Django Please enter either "yes" or "no" not taking answer

1👍

Try using:

python manage.py syncdb --noinput

that will just skip the create superuser step of syncdb. If you end up needing a superuser later on, you can use:

python manage.py createsuperuser
👤jc555

Leave a comment