LoginSignup
1

More than 5 years have passed since last update.

UnicodeDecodeError: 'utf-8' codec can't decode byte 0x83 を解決したい

Posted at

Issue

Windows 10 Python 3.6環境で

pip install future としたら

UnicodeDecodeError: 'utf-8' codec can't decode byte 0x83 in position 87: invalid start byte

と言われた。コードを書き替えるなど不毛なことはしたくない。
解決法は散見されたが、無意味だった。

Solution

python -m pip install -U https://github.com/pypa/pip/archive/master.zip

これでpipの最新版(不安定)がインストールされる。このバージョンでは問題が解消されているのでエラーは起きない。

Reference

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1