When installing from source it throws the following error:
File "setup.py", line 12
SyntaxError: Non-ASCII character '\xc5' in file setup.py on line 12, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
I'm using UTF-8 encoding.
According to docs, adding # coding=latin-1 fixes it.
Hi
When installing from source it throws the following error:
File "setup.py", line 12 SyntaxError: Non-ASCII character '\xc5' in file setup.py on line 12, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
I'm using UTF-8 encoding.
According to docs, adding
# coding=latin-1
fixes it.