`pip install pandas` gives UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 41: ordinal not in range(128)

前端 未结 2 428
离开以前
离开以前 2020-12-06 05:13

When performing pip install pandas on a Digital Ocean 512MB droplet, I get the error UnicodeDecodeError: \'ascii\' codec can\'t decode byte 0xe2 in positi

2条回答
  •  佛祖请我去吃肉
    2020-12-06 05:30

    It looks like gcc being killed due to insufficient memory (see @Blender's comment) exposed a bug in pip. It mixes bytestrings and Unicode while logging that leads to:

    >>> '\n'.join(['bytestring with non-ascii character ☺', u'unicode'])
    Traceback (most recent call last):
      File "", line 1, in 
    UnicodeDecodeError: 'ascii' codec can't decode byte 0xe2 in position 36: \
       ordinal not in range(128)
    

    If it is reproducible with the latest pip version; you could report the bug.

提交回复
热议问题