sublime python3的配置文件python3.sublime-build存放位置


C:\Users\Administrator\AppData\Roaming\Sublime Text\Packages\User

 python3.sublime-build配置文件写入例子:

{
 "cmd": ["/usr/bin/python3", "-u", "$file"],
 "file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
 "selector": "source.python" 
}

 高亮地方是python安装位置。

{
"cmd": ["C:/Python/Python310/python.exe", "-u", "$file"],
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}