-
Notifications
You must be signed in to change notification settings - Fork 149
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
Setup fails on windows #14
Comments
I get this error as well on Python 3 on Windows. |
Could you release the fixed version on PyPi? Our project is depending on |
jmoiron
added a commit
that referenced
this issue
Nov 13, 2014
New version released as it may be the last version before an extra external dep. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
On my Windows system :
pip install humanize
(orpython setup.py install
on sources) fails with this error :UnicodeDecodeError: 'charmap' codec can't decode byte 0x81 in position 2017: character maps to <undefined>
Full stack trace here
I have naively fixed that by replacing this line by :
long_description=open('README.rst', 'r', encoding='UTF8').read(),
I don't know if it's a great solution but it worked for me.
The text was updated successfully, but these errors were encountered: