Running pip install
on Windows can cause UnicodeDecodeError and get angry.
In the case of Windows, it tries to read with ascii when the encoding is not specified? However, in such a case, you can deal with it by the following method.
PYTHONIOENCODING
to ʻutf_8`.This should work.
Reference: UnicodeDecodeError from pip
Recommended Posts