找到Default包中的exec.py,替换45行:
proc_env[k] = os.path.expandvars(v).encode(sys.getfilesystemencoding())
为
proc_env[k] = os.path.expandvars(v.decode(sys.getfilesystemencoding())).encode(sys.getfilesystemencoding())
proc_env[k] = os.path.expandvars(v).encode(sys.getfilesystemencoding())
为
proc_env[k] = os.path.expandvars(v.decode(sys.getfilesystemencoding())).encode(sys.getfilesystemencoding())