sublime text3点击ctrl+B无法运行Python程序?

1、打开sublime text 3 ,选择 tools-->Build System-->New Build System....

2、将下面代码块复制进新文件中,并命名为Python.sublime-build,保存(默认目录即可)

{
"cmd": ["python", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python",
"encoding": ""
} 记得改endocding和命令提示中的编码要和本机cmd属性中的编码一样,如:936.

注意:前提必须将python路径配置到path环境变量下。

上一篇:iOS开发系列--C语言之数组和字符串


下一篇:springboot处理跨域的解决方案