标签:
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": "950" } 记得改endocding和命令提示中的编码要和本机cmd属性中的编码一样,如:936.
注意:前提必须将python路径配置到path环境变量下。
sublime text3点击ctrl+B无法运行Python程序?
标签:
原文地址:http://www.cnblogs.com/dtest/p/4523890.html