安装新下载的Eclipse Classic:
sudo tar -xvzf eclipse-SDK-3.7-linux-gtk.tar.gz -C /usr/local/
要安装所需的CDT功能(使用Eclipse的“帮助>安装新软件”工具找到的引用)
- C / C ++开发工具(org.eclipse.cdt.feature.group)
- C / C ++开发工具SDK(org.eclipse.cdt.sdk.feature.group)
- C / C ++开发平台(org.eclipse.cdt.platform.feature.group)
- C / C ++内存视图增强功能(org.eclipse.cdt.debug.ui.memory.feature.group)
- 用于C / C ++的Eclipse调试器(org.eclipse.cdt.debug.edc.feature.group)
- 其他C / C ++实用程序(org.eclipse.cdt.util.feature.group)
跑 :
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功能是:
- Eclipse的PyDev(org.python.pydev.feature.feature.group)
跑 :
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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)