使用 Sublime 工具时报Decode error - output not utf-8解决办法
在菜单中tools中第四项编译系统 内最后一项增添新的编译系统
自动新建 Python.sublime-build文件,并添加"encoding":"cp936"这一行,保存即可
使用python2 则注释encoding改为utf-8
{"env": {"PATH":"D:\\anaconda\\envs\\python3_1;%PATH%"},"shell_cmd": "python -u \"$file\"","file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)","selector": "source.python","encoding": "cp936"// "encoding": "utf-8"
}
ctrl+B 运行