How do I configure Eclipse to launch a browser when Run or Debug is selected using Pydev plugin(当使用 Pydev 插件选择运行或调试时,如何配置 Eclipse 以启动浏览器)
问题描述
我正在使用 Eclipse Pydev 插件学习 Python 和 Django.当我按下运行或调试时,我希望内部或外部浏览器使用 URL http:/127.0.0.1 启动或刷新.我已经看到它是用 PHP 插件完成的,但不是 Pydev.
I'm learning Python and Django using the Eclipse Pydev plugin. I want the internal or external browser to launch or refresh with the URL http:/127.0.0.1 when I press Run or Debug. I've seen it done with the PHP plugins but not Pydev.
推荐答案
以下是设置外部启动配置以启动 IE 的步骤:
Here are the steps to set up an external launch configuration to launch IE:
- 选择运行->外部工具->外部工具配置...
- 在左侧窗格中,选择 Program,然后选择新图标(窗格上方最左侧的图标).
- 在右侧窗格中,选择主选项卡.
- 在 名称: 字段中输入 launch_ie.
- 在 Location: 字段中输入 ${system_path:explorer.exe}.
- 在 Arguments 字段中输入 http:/127.0.0.1.
- 要运行外部配置,请选择运行.
- Select Run->External Tools->External Tools Configurations...
- In the left hand pane, select Program then the new icon (left-most icon above the pane).
- In the right hand pane, select the Main tab.
- Enter launch_ie in the Name: field.
- Enter ${system_path:explorer.exe} in the Location: field.
- Enter http:/127.0.0.1 in the Arguments field.
- To run the external configuration, select Run.
如果您想共享配置,您可以使用以下可选步骤:
If you want to share the configuration you can use these optional steps:
- 选择常用标签
- 在另存为部分中选择共享文件:选项.
- 选择保存配置的位置(将其保存到其他空项目中可能是个好主意,因为您可以将其导入另一个工作区)
要重新运行配置,您有几个选择:
To rerun the configuration you have a few choices:
- 从菜单栏中选择外部工具图标 然后点击 launch_ie
- 选择运行->外部工具->启动ie
- 按 Alt+R、E、1(假设 launch_ie 是列表中的第一项,否则选择适当的数字)
这篇关于当使用 Pydev 插件选择运行或调试时,如何配置 Eclipse 以启动浏览器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:当使用 Pydev 插件选择运行或调试时,如何配置 Eclipse 以启动浏览器
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 降序排序:Java Map 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01