You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey there, I just tried to install and run hovercraft on a test *.rst and I constantly got the syntax error that there is no encoding declared on line 1 of hovercraft-script.py:
SyntaxError: Non-UTF-8 code starting with '\xfc' in file C:\Users\**UsernameIncludingÜ**\AppData\Local\Programs\Python\Python39\Scripts\hovercraft-script.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
I guess that's because my Windows username has a "ü" in it so for that case a quick # -*- coding: utf-8 -*- solves it.
The text was updated successfully, but these errors were encountered:
That script is generated by setuptools (or possibly pip) when you install Hovercraft, so if this still is an issue, I think that's a bug, probably in setuptools.
Hey there, I just tried to install and run hovercraft on a test *.rst and I constantly got the syntax error that there is no encoding declared on line 1 of
hovercraft-script.py
:SyntaxError: Non-UTF-8 code starting with '\xfc' in file C:\Users\**UsernameIncludingÜ**\AppData\Local\Programs\Python\Python39\Scripts\hovercraft-script.py on line 1, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details
I guess that's because my Windows username has a "ü" in it so for that case a quick
# -*- coding: utf-8 -*-
solves it.The text was updated successfully, but these errors were encountered: