如何使用命令行自动安装 Eclipse 插件?
我需要自动安装 Eclipse Classic 并添加两个“插件”:
- CDT (不确定这是否可以称为“插件”)
- PyDev
安装 Eclipse Classic (刚刚下载):
sudo tar -xvzf eclipse-SDK-3.7-linux-gtk.tar.gz -C /usr/local/
如何安装 CDT 和 PyDev 作为系统插件(不是用户的) )?
I need to automate Installation of Eclipse Classic and add two "plugins" :
- CDT (not sure this can be called a "plugin")
- PyDev
Install Eclipse Classic (just downloaded) :
sudo tar -xvzf eclipse-SDK-3.7-linux-gtk.tar.gz -C /usr/local/
How to install then CDT and PyDev as system plugins (not user's)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我可以找到这两个有帮助的文档:
安装新下载的 Eclipse Classic :
安装所需的 CDT 功能(通过使用 Eclipse 的“帮助>安装新软件”工具找到的参考)
运行:
要安装 PyDev,我们首先需要插入其自动签名证书(可以在此处找到:http://pydev.org/pydev_certificate.cer ),
因此运行它:
所需的 PyDev 功能是:
运行:
I could find these two docs which helped :
Install freshly downloaded Eclipse Classic :
To install desired CDT features (references found by using Eclipse's "Help>Install new software" tool)
run :
To install PyDev, we first need to insert their auto-signed certificate (which can be found here : http://pydev.org/pydev_certificate.cer )
so run it :
The desired PyDev features are :
run :
这是一个较晚的答案,但您可能需要检查将存储库的功能和插件目录复制到位于主 Eclipse 文件夹下的名为 dropins 的文件夹中。这在 Helios 及更高版本中有效。更多信息请访问此链接。
This is a late answer but you might want to check out copying the feature and plugin directory of your repository to a folder called dropins located under the main eclipse folder. This works as of Helios and later. More information can be found at this link.
您可以从 GUI 手动将 CDT 和 PyDev 添加到当前的 Eclipse 安装中。
然后将它们全部打包到一个存档中并保存到一个存档中。在目标系统上解压。
You may add CDT and PyDev manually, from GUI, into your current Eclipse installation.
Then pack them altogether into one archive & unpack on target system(s).