-
Notifications
You must be signed in to change notification settings - Fork 29
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: 'ascii' codec can't decode byte 0xe2 in position 621: ordinal not in range(128) #11
Comments
Having the same issue, have anybody solved this one? |
I solved it in the attached pull request. I'm pretty sure the CI failures on that are due to issues with the CI system rather than a fairly simple code change. |
Thanks! |
Just going to add what worked for me here:
The difference is in the |
git clone https://github.com/mnmelo/lazy_import and open setup.py using any editor and with open('README.rst') as infile: to with open('README.rst', encoding='your encoding') as infile: and pip install . in my case in your case this might be work... |
On some systems
pip install lazy_import
fails with the above error. I guess they're not defaulting to UTF-8 decoding.The text was updated successfully, but these errors were encountered: