找到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())
