08-15-2023 01:51 AM
Hello:
I was able to run the vi program on my development computer, but there was an error when I ran it as an exe. The error is as follows,
code 1671
error:<class'UnicodeDecodeError'>
'utf-8'codec can't decode byte 0xb1 in position 49:invalid start byte
Is there a configuration error? Any ideas on how to solve it?
Looking forward to your reply!
08-15-2023 02:43 AM - edited 08-15-2023 02:43 AM
Hi and Hallo!
@hallo77 wrote:
I was able to run the vi program on my development computer, but there was an error when I ran it as an exe. The error is as follows, code 1671
Which VI?
08-15-2023 03:25 AM
Error out from Python node.I have solved it, thank you for your reply.
12-06-2023 12:39 PM
Hi Sir,
Could you please tell me how did you solve the problem? I am getting the same error (1671) from Python Node and I cannot solve it. Thank you so much.
06-09-2024 09:03 AM
Error 1671:
<class 'UnicodeDecodeError'>
'utf-8' codec can't decode byte 0xe2 in position 67: invalid continuation byte
Does anyone have a solution?
01-08-2025 06:36 AM
As I've just solved the same/similar error and this thread has no posted solution i thought I should share.
The error i recieved was:
"Python returned the following error: <class 'UnicodeDecodeError'>
'utf-8' codec can't decode byte 0xe4 in position 34: invalid continuation byte"
Check the path for and remove non-standard characters. In my case, I had an 'ä' present at position 34 in the path string to my .py-file. Changing the path to eliminate such characters made the error go away and the vi ran properly.