-
Notifications
You must be signed in to change notification settings - Fork 259
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
UnicodeDecodeError #31
Comments
Hi @zonhye! Are you using v1.0.0 (master branch) with Python 3.5+? |
@fbarrios Python 3.6.5 |
same error occurered on me. |
Note that I'm working on Windows10. |
@scofield7419 can you share a sample text in which this happens, please? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
pip install summa,got error message:
File "\setup.py", line 11, in
long_description = open('README').read(),
UnicodeDecodeError: 'gbk' codec can't decode byte 0x93 in position 25: illegal multibyte sequence
chang line 11 to:
long_description = open('README','r',encoding='UTF-8').read()
problem solved
The text was updated successfully, but these errors were encountered: