You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When installing the package on a windows system I get the following error:
Traceback (most recent call last):
[...]
File "setup.py", line 12, in <module>
long_description=open("README.md").read(),
[...]
UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d in position 5249: character maps to <undefined>
So line 12 of setup.py should state the expected enconding: long_description=open("README.md", 'r', encoding='utf8').read(),.
Otherwise, Win10 expects 1252 encoding.
I simply changed that one line after cloning the repo and installed it as suggested to make it work.
Hence the standard character encoding on linux is in UTF8, it should work on these systems too, even though I am not sure, if this solution is generally correct.
The text was updated successfully, but these errors were encountered:
When installing the package on a windows system I get the following error:
So line 12 of
setup.py
should state the expected enconding:long_description=open("README.md", 'r', encoding='utf8').read(),
.Otherwise, Win10 expects 1252 encoding.
I simply changed that one line after cloning the repo and installed it as suggested to make it work.
Hence the standard character encoding on linux is in
UTF8
, it should work on these systems too, even though I am not sure, if this solution is generally correct.The text was updated successfully, but these errors were encountered: