我需要自动安装Eclipse Classic并添加两个“插件”:
安装Eclipse Classic(刚刚下载):
sudo tar -xvzf eclipse-SDK-3.7-linux-gtk.tar.gz -C /usr/local/
如何安装CDT和PyDev作为系统插件(不是用户的)?
我可以找到这两个文件帮助:
安装刚刚下载的Eclipse Classic:
sudo tar -xvzf eclipse-SDK-3.7-linux-gtk.tar.gz -C /usr/local/
要安装所需的CDT功能(通过使用Eclipse的“帮助>安装新软件”工具找到的参考资料)
跑 :
sudo /usr/local/eclipse/eclipse -nosplash \ -application org.eclipse.equinox.p2.director \ -repository http://download.eclipse.org/releases/indigo/,http://download.eclipse.org/tools/cdt/releases/helios/ \ -destination /usr/local/eclipse \ -installIU org.eclipse.cdt.feature.group \ -installIU org.eclipse.cdt.sdk.feature.group \ -installIU org.eclipse.cdt.platform.feature.group \ -installIU org.eclipse.cdt.debug.ui.memory.feature.group \ -installIU org.eclipse.cdt.debug.edc.feature.group \ -installIU org.eclipse.cdt.util.feature.group
要安装PyDev,我们首先需要插入他们的自动签名证书(可以在这里找到: http : //pydev.org/pydev_certificate.cer )
#!/usr/bin/env python # add PyDev's certificate to Java's key and certificate database # Certificate file can be downloaded here : http://pydev.org/pydev_certificate.cer import os, sys import pexpect print "Adding pydev_certificate.cer to /usr/lib/jvm/java-6-openjdk/jre/lib/security/cacerts" cwd = os.path.abspath (os.path.dirname(sys.argv[0])) child = pexpect.spawn("keytool -import -file ./pydev_certificate.cer -keystore /usr/lib/jvm/java-6-openjdk/jre/lib/security/cacerts") child.expect("Enter keystore password:") child.sendline("changeit") if child.expect(["Trust this certificate?", "already exists"]) == 0: child.sendline("yes") try: child.interact() except OSError: pass print "done"
所以运行它:
sudo ./add_pydev_certificate.py
所需的PyDev功能是:
跑 :
sudo /usr/local/eclipse/eclipse -nosplash \ -application org.eclipse.equinox.p2.director \ -repository http://pydev.org/updates/ \ -destination /usr/local/eclipse \ -installIU org.python.pydev.feature.feature.group
这是一个迟到的答案,但是您可能想要检查一下将存储库中的功能和插件目录复制到位于主eclipse文件夹下的名为dropins的文件夹中。 这从Helios和稍后工作。 更多信息可以在这个链接找到。
您可以手动将CDT和PyDev从GUI添加到当前的Eclipse安装中。 然后把它们一起打包成一个档案,并在目标系统上解包。