UnicodeDecodeError: 'utf-8' codec can't decode byte 0xe7 in position 78: invalid continuation byte

Eu estou fazendo um projeto academico utilizando o django, já estou com tudo feito, todavia quando vou dar “python manage.py runserver” aparece esse erro de UTF-8

— From Google translate —
Ajudaria se você publicasse o erro completo e o rastreamento - isso ajudaria a identificar a origem específica do problema.

Um gráfico do Windows-1252 mostra que 0xe7 é “ç” nesse conjunto de caracteres. A causa mais provável é que você tenha esse caractere em seu projeto em vez do caractere UTF-8 correspondente. (Se estou entendendo o gráfico corretamente, seria 0xc3 0xa7.)

Você pode querer garantir que qualquer editor que você esteja usando para escrever seus programas esteja configurado para UTF-8 e não para uma das outras codificações.

— The original English —

It would help if you posted the complete error and traceback - that would help identify the specific source of the problem.

A Windows-1252 chart shows 0xe7 is “ç” in that character set. The most likely cause is that you have that character in your project instead of the corresponding UTF-8 character. (If I’m understanding the chart correctly, that would be 0xc3 0xa7.)

You may want to ensure that whatever editor that you are using to write your programs are configured for UTF-8 and not one of the other encodings.