gpt4 book ai didi

python - 我可以设置 IDLE 默认启动 Python 2.5 吗?

转载 作者:行者123 更新时间:2023-11-28 20:26:12 26 4
gpt4 key购买 nike

好的,所以我刚刚安装了 Python 2.7,但我已经准备好安装 Python 2.5。我意识到,因为我最后安装了 Python 2.7,所以 IDLE 会自动打开我不想要的 Python 2.7 IDLE。当我在 python 源文件上使用右键单击选项时,有什么方法可以将 Python 2.5 IDLE 设置为自动打开?谢谢。

最佳答案

您可以轻松地创建或编辑文件的右键单击属性。

编辑特定文件扩展名的右键单击菜单:

  1. 从命令行运行 assoc .py 并记下关联的名称:

    C:>assoc .py
    .py=Python.File

  2. 运行 regedit.exe

  3. 浏览到 HKEY_CLASSES_ROOT\Python.File\shell
  4. shell 下创建一个名为 Edit with IDLE 的键(或者您希望它显示在菜单中的任何方式)。
  5. Edit with Idle 下创建一个名为 command 的 key 。
  6. 编辑默认值以运行您想要的命令。使用 "%1" 插入右击文件的名称。像这样的东西:

    c:\python25\pythonw.exe c:\python25\lib\idlelib\idle.pyw "%1"

或者,只需将以下内容保存为 idle.reg 并双击它以将此值插入注册表。

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Python.File\shell\Edit with IDLE\command]
@="\"C:\\Python25\\pythonw.exe\" \"C:\\python25\\Lib\\idlelib\\idle.pyw\" \"%1\""

关于python - 我可以设置 IDLE 默认启动 Python 2.5 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12443510/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com