[sublime]用sublime搭建属于自己的Python的IDE

Posted 丿AlanWalker

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[sublime]用sublime搭建属于自己的Python的IDE相关的知识,希望对你有一定的参考价值。

先在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"
        }
    }
]

大功告成

 

以上是关于[sublime]用sublime搭建属于自己的Python的IDE的主要内容,如果未能解决你的问题,请参考以下文章

用sublime text 3 搭建一个编译java的环境

怎么用sublime text 3搭建python 的ide

Python 环境搭建和sublime text配置(新手向)

sublime的python开发环境搭建

用sublime 3搭建php 运行环境

怎么用sublime text 3搭建python 的ide