sublime text3运行Python无法input的解决办法

1、按Ctrl+Shift+p,输入 install Package,输入SublimeREPL(要安装的插件名字),然后点击回车即可安装。

2、安装完成后在Tools->SublimeREPL->Python->Python - RUN current file,即可打开当前python文件的交互界面。

3、设置快捷键打开。点击Preferences->Key Bindings,输入:

[

{ "keys": ["f5"], "caption": "SublimeREPL:Python",

"command": "run_existing_window_command", "args":

{

"id": "repl_python_run",

"file": "config/Python/Main.sublime-menu"

}

}

]

然后按F5或者ctrl+B开始编译。

(0)

相关推荐