只需要在以下文件写入python编译器的路径:
在工具栏点击Preferences,打开Browse Packages。在打开的文件夹中找到Python,并打开这个文件夹。找到文件Python.sublime-build,并打开。在字典中添加一行"path": "F:\\python27":
{
"cmd": ["python", "-u", "$file"],
"path": "F:\\python27",
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"selector": "source.python"
}
CTRL+B就可以运行python程序了。
----------
如果需要调整字体大小,点击Preferences->Settings-User,在字典中加入一行:
"font_size": 12
时间: 2024-10-22 03:20:13