PyDev 项目最轻量级的 eclipse 安装是什么?
What is the most lightweight eclipse install for PyDev project?
我想使用 eclipse 和 PyDev 作为我的 Python 开发环境。我已经下载了 eclipse 安装程序(2019-03 版本),但是它为 "Java Developers"、"C/C++ Developers"、"PHP Developers" 等提供了选项,没有为 Python 开发人员提供选项。
我认为每个可用选项都可能包含大量我不需要的功能,从而导致安装臃肿。那么,我可以安装 PyDev 插件的最精简的最小安装是什么?
安装程序提供 IDE 由 Eclipse 项目的软件构建的软件包,但 PyDev 不是 Eclipse 项目。
- The PyDev website recommends to use LiClipse for a PyDev standalone installation
- 或者,您可以从 平台运行时二进制文件 which can be downloaded from the Eclipse project website. The Eclipse Marketplace Client (which makes it easier to install additional software) can be installed via Help > Install New Software... from the latest Simultaneous Releases update site
https://download.eclipse.org/releases/latest
.
有几个选项可以将 Eclipse 用作 IDE 用于 Python 解释器。关于PyDev这个Eclipse中可能用到的插件,值得指出以下几点...
- 您可以使用最新版本的Eclipse。例如,您不需要 Eclipse Neon。
- 您需要安装 Python 的工作版本,我使用
3.8.1
。
- 打开新的 Eclipse 工作区时,请务必单击市场 link,以便您可以搜索并安装 PyDev,您将在 Eclipse 中使用的插件。
- 成功安装 PyDev 后,确保您的首选项确认解释器实际上 Python 在 Eclipse 中:
Eclipse >> PyDev >> Interpreter - Python
- 从这里您可以使用 .py 文件扩展名创建和构建应用程序,右键单击您的代码会生成 运行 所选代码。
我想使用 eclipse 和 PyDev 作为我的 Python 开发环境。我已经下载了 eclipse 安装程序(2019-03 版本),但是它为 "Java Developers"、"C/C++ Developers"、"PHP Developers" 等提供了选项,没有为 Python 开发人员提供选项。
我认为每个可用选项都可能包含大量我不需要的功能,从而导致安装臃肿。那么,我可以安装 PyDev 插件的最精简的最小安装是什么?
安装程序提供 IDE 由 Eclipse 项目的软件构建的软件包,但 PyDev 不是 Eclipse 项目。
- The PyDev website recommends to use LiClipse for a PyDev standalone installation
- 或者,您可以从 平台运行时二进制文件 which can be downloaded from the Eclipse project website. The Eclipse Marketplace Client (which makes it easier to install additional software) can be installed via Help > Install New Software... from the latest Simultaneous Releases update site
https://download.eclipse.org/releases/latest
.
有几个选项可以将 Eclipse 用作 IDE 用于 Python 解释器。关于PyDev这个Eclipse中可能用到的插件,值得指出以下几点...
- 您可以使用最新版本的Eclipse。例如,您不需要 Eclipse Neon。
- 您需要安装 Python 的工作版本,我使用
3.8.1
。 - 打开新的 Eclipse 工作区时,请务必单击市场 link,以便您可以搜索并安装 PyDev,您将在 Eclipse 中使用的插件。
- 成功安装 PyDev 后,确保您的首选项确认解释器实际上 Python 在 Eclipse 中:
Eclipse >> PyDev >> Interpreter - Python
- 从这里您可以使用 .py 文件扩展名创建和构建应用程序,右键单击您的代码会生成 运行 所选代码。