先在sublime中利用package control下载anaconda插件,
然后更改python的路径,不知道自己anaconda的python在哪,可以在prompt用命令where python进行查找
进行进入anaconda的setting-default中更改路径
在setting-user中加入一下代码
{
"python_interpreter":"D:\\Anaconda\\envs\\tensorflow\\python",
"suppress_word_completions":true,
"suppress_explicit_completions":true,
"comlete_parameters":true,
"swallow_startup_errors":true,
"anaconda_linting":false
}
接下来下载sublimeREPL插件,这个也要改我们python路径
在Browse package中,找到sublimeREPL中config,并打开python中的Main.sublime-menu,将红色部分更改为自己的路径。
我们最后绑定快捷键,打开 key binding加入
[
{
"keys" : ["f5"],
"caption": "SublimeREPL: Python - RUN current file",
"command": "run_existing_window_command",
"args":
{
"id": "repl_python_run",
"file": "config/Python/Main.sublime-menu"
}
}
]
大功告成