如何在 IDLE 中打开 .py 文件进行编辑而不启动新的解释器会话?

发布于 2024-12-10 14:11:50 字数 242 浏览 0 评论 0原文

Windows 版 Python 内置了对右键单击 .py 文件并选择“使用 IDLE 进行编辑”的支持,而不是运行该文件的常规操作。

如何在 Linux 上完成相同的设置?我正在运行 Mint Julia,一个 Debian 类型的发行版。从快捷菜单中选择我的默认程序将只允许我选择idle3,这将打开带有 V 形符号的解释器和我想要编辑的文件。

我可以设置“空闲打开”选项来放弃解释器,直到我决定运行该文件吗?

谢谢。

Python for Windows has built in support for right clicking a .py file, and selecting, "edit with IDLE", instead of the usual action, which is running the file.

How can I accomplish this same setup on Linux? I am running Mint Julia, a Debian-type distribution. Selecting my default program from the shortcut menu will only allow me to select idle3, which will open both an interpreter with a chevron, and the file I want to edit.

Can I set up my "open with idle" selection to forgo the interpreter, until I decide to run the file?

Thanks.

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

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

发布评论

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

评论(2

陌伤浅笑 2024-12-17 14:11:50

在 IDLE 的菜单中,转到选项 ->配置IDLE...->一般的。在“启动时”下选择“打开编辑窗口”而不是“打开外壳窗口”,然后单击“应用”或“确定”。 IDLE 将保存此设置,从现在开始,当您打开文件时将仅打开一个编辑器窗口。

In IDLE's menu, go to Options -> Configure IDLE... -> General. Under "At Startup" select "Open Edit Window" instead of "Open Shell Window", then hit Apply or Ok. IDLE will save this setting and from now on will open just an editor window when you open a file.

不美如何 2024-12-17 14:11:50

您需要更改启动 IDLE 本身的命令以包含“-e”。选择“使用自定义命令”并输入idle -e

You'll need to change the command to start IDLE itself to include a "-e". Choose "use a custom command" and type idle -e

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