-
Notifications
You must be signed in to change notification settings - Fork 257
can't install by pip #298
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
Thanks for reporting. Can you please open your Python interpreter on both platforms, execute
and provide the results? |
on my windows 10 import locale
locale.getpreferredencoding(False)
'cp936' |
Another thing you could try. On each platform, clone the repository, cd into the clone and try to install "by hand" using
It should fail with the same error. Then modify setup.py like this:
And tell us how it went. Thanks. |
on raspbain root@raspberrypi:~# python3.6
Python 3.6.0 (default, Jan 12 2017, 12:16:11)
[GCC 4.9.2] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> locale.getpreferredencoding(False)
'ANSI_X3.4-1968'
>>> |
on ubuntu 16.04
|
Great. Then the procedure I provided might work. |
the diff with
can work fine now.Thanks |
You mean you installed successfully on all platforms using this fix? If so, then we shall release a new version with this fix. |
Yes,I had test on all platforms that I used, and it installed successfully. |
I had try on the raspbain(RaspberryPI's Linux)
and the windows 10
But it's work fine in a standard ubuntu server 16.04.
The text was updated successfully, but these errors were encountered: