I am getting an error in the application #127463
Answered
by
davevad93
RookieS193
asked this question in
Programming Help
-
Select Topic AreaProduct Feedback BodySyntaxError: Non-UTF-8 code starting with '\xfc' in file C:\Users\ferid\OneDrive\Masaüstü\Blank-Grabber-main\Blank Grabber\env\Scripts\pyinstaller-script.py on line 2, but no encoding declared; see https://python.org/dev/peps/pep-0263/ for details |
Beta Was this translation helpful? Give feedback.
Answered by
davevad93
Jun 5, 2024
Replies: 1 comment
-
Hi @RookieS193 , That is due to the encoding of the file which isn't
That should fix it. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RookieS193
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @RookieS193 ,
That is due to the encoding of the file which isn't
utf-8
, so you have to declare it by putting one of these two lines at the top of your code.# coding: iso-8859-1 -*-
or# -*- encoding: utf-8 -*-
That should fix it.