sublime text 可以通过自定义配置 bulid 运行各种编程语言
操作步骤
- Tools -- Build System -- New Build System
以php为示例:
{
"cmd": ["php", "$file"],
}
将文件保存并命名为:php.sublime-build
记得要将php加入到环境变量
运行
ctrl+shift+p
调出命令面板,输入:build with: php
执行效果:
仿照流程配置python2 和 python3 的运行环境
python2.sublime-build
{
"cmd": ["python", "$file"],
}
python3.sublime-build
{
"cmd": "py -3 -OO -u \"$file\""
}
同理,要先确保本机安装了python2 和 python3,且设置了环境变量