SublimeREPL和IPython [英] SublimeREPL and IPython

查看:517
本文介绍了SublimeREPL和IPython的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

当我尝试使用SublimeREPL的IPython时,我失败了。

I fail when I tried to use IPython with SublimeREPL.

我的设置是:

- Windows 8.1
- Sublime Text 3
- C:\Python34
- C:\Python27
- C:\Anaconda3\Scripts -> Here it's where Ipython is

我的PYTHONPATH和PATH是正确的,我在SublimeREPL设置中写道 - 用户:

My PYTHONPATH and PATH are correct and I wrote in SublimeREPL settings - User:

{
    "default_extend_env": {"PATH": "{PATH};C\\Anaconda3\\Scripts"}
}


推荐答案

这是解决了。我在文件夹 Sublime Text 3 \Packages\User\SublimeREPL\config\Python中创建一个名为 Main.sublime-menu 的文件

It's solved. I make a file named Main.sublime-menu within the folder Sublime Text 3\Packages\User\SublimeREPL\config\Python

[
{
    "id": "tools",
    "children":
    [{
        "caption": "SublimeREPL",
        "mnemonic": "r",
        "id": "SublimeREPL",
        "children":
        [
            {
                "caption": "Python",
                "id": "Python",

                "children":[
                    {
                        "command": "repl_open",
                        "caption": "IPython - Anaconda",
                        "id": "repl_python_ipython",
                        "mnemonic": "p",
                        "args": {
                            "type": "subprocess",
                            "encoding": "utf8",
                            "autocomplete_server": true,
                            "cmd": ["C:/Anaconda3/Scripts/ipython", "--colors=NoColor"],
                            "cwd": "$file_path",
                            "syntax": "Packages/Python/Python.tmLanguage",
                            "external_id": "python"

                        }
                    }
                ]
            }
        ]
    }]
}
]

这篇关于SublimeREPL和IPython的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆