[Django]-'ascii' codec can't decode byte 0xe2 in position 5367: ordinal not in range(128)

0👍

Seems when the server was started up python3 manage.py runserver, the import would work just fine. It wasn’t working when I was importing it through Django when Django was running on Apache via wsgi. So I’m guessing Apache was somehow interfering with it. It works now, as long as I import straight through Django.

Leave a comment