UnicodeDecodeError: ‘utf8‘ codec can‘t decode byte 0xd6 in position 88: invalid continuation byte

解决方法:

进入python\lib\utf-8.py中

把stricts(严格)改为ignore(忽略)

如下:

encode = codecs.utf_8_encode

def decode(input, errors='ignore'):
    return codecs.utf_8_decode(input, errors, True)
 

你可能感兴趣的:(python,cmd)