具有调试和 iPython 集成功能的 Python IDE?

发布于 2024-09-01 09:58:59 字数 217 浏览 5 评论 0原文

有谁知道有一个以 iPython 作为解释器的 python IDE 吗?

使用标准解释器只会让我发疯,因为我已经开始喜欢使用 iPython 及其提供的所有功能。老实说,我宁愿使用简单的文本编辑器 + ipython 而不是 IDE 进行编码,但我喜欢能够通过单击鼠标等来设置断点,所以我想将两者结合起来。

很抱歉,如果有什么东西存在并且这是常识。非常感谢您提供的任何信息/提示。谢谢!

Does anyone know of a python IDE that has iPython as the interpreter?

Using the standard interpreter just drives me nuts, as I've just grown to love using iPython and all the features it provides. To be honest, I'd rather code with a simple text editor + ipython than an IDE, but I love being able to set breakpoints with a click of a mouse, etc., so I'd like to combine both.

Sorry if there's something out there and this is common knowledge. Any information/tips you can provide is GREATLY appreciated. Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

如果没有 2024-09-08 09:58:59

顺便说一句,我见过 Spyder(以前的 Pydee),它确实会在 9 月份集成 iPython,但它仍然缺少调试器。 ::叹::

Btw, I've seen Spyder (formerly Pydee), and that indeed will have iPython integration in September, but it still lacks a debugger. ::sigh::

提笔落墨 2024-09-08 09:58:59

自 2012 年 4 月 28 日起,Spyder 提供调试器和 iPython(v 0.10.2) 集成Python Tools for Visual Studio 提供了调试器和 iPython(v 0.12) 集成。

As of 28/04/2012 Spyder provides a debugger and iPython(v 0.10.2) integration and Python Tools for Visual Studio provides a debugger and iPython(v 0.12) integration.

瞳孔里扚悲伤 2024-09-08 09:58:59

Sypder(2) 最接近您可能需要的内容。我已经使用它一段时间并爱上它了。它带有方便的代码完成、代码分析和其他实用程序。它在我的 ubuntu 软件中心,可以一键安装:)。
尝试一下

https://code.google.com/p/spyderlib/

Sypder(2) comes closest to what you may need. I have used this for some time and falling in love with it. It comes with handy code completion, code analysis and other utilities. It was in my ubuntu software centre, ready for a one click install :).
give it a shot

https://code.google.com/p/spyderlib/

菩提树下叶撕阳。 2024-09-08 09:58:59

pudb 是一个与 iPython 集成的全屏、文本模式“控制台”调试器。

我不知道还有其他与 iPython 集成的 Python 调试器(或 IDE),这似乎是您请求的核心。

pudb is a full-screen, text-mode "console" debugger with iPython integration.

I don't know of other Python debuggers (or IDEs) which integrate with iPython, which seems to be the core of your request.

小草泠泠 2024-09-08 09:58:59

IPython 可以用作 PyDev 交互式控制台的后端。

此引文摘自 Fabio Zadrozny 于 2011 年 8 月在其 博客。他目前正在维护 PyDev。

IPython can be used as the backend for the PyDev interactive console.

This quote is from the instructions written in August 2011 by Fabio Zadrozny on his blog. He is currently maintaining PyDev.

泡沫很甜 2024-09-08 09:58:59

http://pydev.org for eclipse 非常棒,调试器运行良好。不确定 ipython 提供了什么,但 pydev 中的交互式终端非常好(完成等)

http://pydev.org for eclipse is great and debugger works well. Not sure what ipython provides but the interactive terminal in pydev is pretty good (completion , etc)

蓝眼睛不忧郁 2024-09-08 09:58:59

的 ipython 插件

我发现的最接近的是使用 GEdit 和http://code.google.com /p/gedit-ipythonconsole/

就我个人而言,我大部分时间都使用 pycharm,并且发现我可以通过执行代码来获取一些 IPython 函数
http://folk.uio.no/steikr/doc/python/ipython /node9.html

import IPython.Shell
IPython.Shell.start().mainloop()

如果您是 PyCharm 用户并且希望看到 IPython 支持,请在以下位置投票:
http://youtrack.jetbrains.net/issue/PY-4504?projectKey=PY

Closest I've found is using GEdit with the ipython plugin from

http://code.google.com/p/gedit-ipythonconsole/

Personally I use pycharm most of the time and have found that I can get SOME IPython functions by executing code from
http://folk.uio.no/steikr/doc/python/ipython/node9.html

import IPython.Shell
IPython.Shell.start().mainloop()

If you are a PyCharm user and want to see IPython support then vote up the ticket at
http://youtrack.jetbrains.net/issue/PY-4504?projectKey=PY

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文