why my pyinstaller display: 'utf-8' codec can't decode byte 0xce in position
up vote
0
down vote
favorite
I am trying pick my .py to .exe using pyinstaller, but some happened. Like this,
> 'utf-8' codec can't decode byte 0xce in position 121: invalid
> continuation byte These are the bytes around the offending byte:
and
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 580, in exec_python
return exec_command(*cmdargs, **kwargs)
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 370, in exec_command
out = out.decode(encoding)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xce in position 121: invalid continuation byte
python decode
add a comment |
up vote
0
down vote
favorite
I am trying pick my .py to .exe using pyinstaller, but some happened. Like this,
> 'utf-8' codec can't decode byte 0xce in position 121: invalid
> continuation byte These are the bytes around the offending byte:
and
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 580, in exec_python
return exec_command(*cmdargs, **kwargs)
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 370, in exec_command
out = out.decode(encoding)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xce in position 121: invalid continuation byte
python decode
using anaconda3-4.2.0 , win10 , python3.5
– jiang
Nov 9 at 11:05
Try to add # -- coding: utf-8 -- at the top of your .py file
– Ssein
Nov 9 at 11:14
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I am trying pick my .py to .exe using pyinstaller, but some happened. Like this,
> 'utf-8' codec can't decode byte 0xce in position 121: invalid
> continuation byte These are the bytes around the offending byte:
and
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 580, in exec_python
return exec_command(*cmdargs, **kwargs)
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 370, in exec_command
out = out.decode(encoding)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xce in position 121: invalid continuation byte
python decode
I am trying pick my .py to .exe using pyinstaller, but some happened. Like this,
> 'utf-8' codec can't decode byte 0xce in position 121: invalid
> continuation byte These are the bytes around the offending byte:
and
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 580, in exec_python
return exec_command(*cmdargs, **kwargs)
File "c:usersdemoanaconda3libsite-packagesPyInstallercompat.py",
line 370, in exec_command
out = out.decode(encoding)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xce in position 121: invalid continuation byte
python decode
python decode
edited Nov 9 at 11:05
Vineeth Sai
2,28441023
2,28441023
asked Nov 9 at 11:03
jiang
1
1
using anaconda3-4.2.0 , win10 , python3.5
– jiang
Nov 9 at 11:05
Try to add # -- coding: utf-8 -- at the top of your .py file
– Ssein
Nov 9 at 11:14
add a comment |
using anaconda3-4.2.0 , win10 , python3.5
– jiang
Nov 9 at 11:05
Try to add # -- coding: utf-8 -- at the top of your .py file
– Ssein
Nov 9 at 11:14
using anaconda3-4.2.0 , win10 , python3.5
– jiang
Nov 9 at 11:05
using anaconda3-4.2.0 , win10 , python3.5
– jiang
Nov 9 at 11:05
Try to add # -- coding: utf-8 -- at the top of your .py file
– Ssein
Nov 9 at 11:14
Try to add # -- coding: utf-8 -- at the top of your .py file
– Ssein
Nov 9 at 11:14
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53224511%2fwhy-my-pyinstaller-display-utf-8-codec-cant-decode-byte-0xce-in-position%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
using anaconda3-4.2.0 , win10 , python3.5
– jiang
Nov 9 at 11:05
Try to add # -- coding: utf-8 -- at the top of your .py file
– Ssein
Nov 9 at 11:14