UnicodeDecodeError when pip install
See original GitHub issueWhen trying to pip install pinyin, error occurs: UnicodeDecodeError: 'charmap' codec can't decode byte 0x90 in position 571: character maps to <undefined>
How to resolve this issue? Thanks
Issue Analytics
- State:
- Created 8 years ago
- Comments:8 (3 by maintainers)
Top Results From Across the Web
pip install UnicodeDecodeError - python - Stack Overflow
This issue is still present in pip 1.5.6 and this is awful. So, you can avoid patching pip and just change your working...
Read more >Pip 20.2 causes UnicodeDecodeError · Issue #8658 - GitHub
packages fails with a UnicodeDecodeError exception. Expected behavior. I expect the packages to be installed successfully like it does with 20.1.
Read more >pip installで UnicodeDecodeErrorが出たときの対処方法 ... - Qiita
python -m pip install backtesting (中略) UnicodeDecodeError: 'cp932' codec can't decode byte 0x94 in position 4437: illegal multibyte ...
Read more >Hi I can't install match by pip, (Example) | Treehouse Community
Hi, I can't install match by using pip on windown, this is error I got, ... UnicodeDecodeError: 'charmap' codec can't decode byte 0x9d...
Read more >Windows pip install UnicodeDecodeError: 'gbk' codec can't ...
但是,冷静的思考一下问题,本质是由于Windows的特殊的编码方式导致,由于我改变思路,直接把windows的编码方式修改为utf-8,问题不就解决了。
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I installed successfully, workaround is:
long_description=open('README.rst').read(),
to something else, likelong_description='fix UnicodeDecodeError',
$ pip install .
@genepeng Your method saved me when trying to install another package. Thanks a bunch!