Google App Engineのプラグイン
Eclipse-> Window -> Help -> Install New Software addを選択し、以下を記載する。
http://dl.google.com/eclipse/plugin/3.5
手動でインストールする場合はココから最新版をインストールする。
~/.eclipse/org.eclipse.platform----/のfeaturesとpluginsに上書きする。
google_appengineへのPATHの通し方(for ubuntu9.10)
~/.profileへ以下を追加する。
export PATH=$PATH:/usr/local/bin/google_appengine
参考サイト:Google App Engine Official Site、Manual Install Site、パスの通し方、
Pydev Install
Ubuntu9.10 + Eclipse3.5にPydevをInstallする
Eclipse-> Window -> Help -> Install New Software
addを選択し、以下を記載する。
http://pydev.org/updates/
Pydev for EclipseとPydev Mylyn Integrationの2つがあるがMylyn0.30はInstallできない。
installしようとすると以下のようなエラーが発生する。
http://pydev.org/updates/
Cannot complete the install because one or more required items could not be found.
Software being installed: Pydev Mylyn Integration 0.3.0 (org.python.pydev.mylyn.feature.feature.group 0.3.0)
Missing requirement: Pydev Mylyn Integration 0.3.0 (org.python.pydev.mylyn.feature.feature.group 0.3.0) requires 'org.eclipse.mylyn.context.ui 0.0.0' but it could not be found
この場合は特に使わないならPydev for EclipseのみをInstallしよう。
どうしてもInstallしたいならMylyn本家で最新Pluginのアドレスをとって入れればよい。
新しいプロジェクトを作るときのInterpreterの選択方法
file -> new -> other -> pydev -> pydev projectを選択する。
grammar versionでpythonのVersionを選択
please configure an interpreter in the related preferences before proceedingを選択
python interpreter->newで/usr/bin/python2.6を選択
applyを選択
参考サイト:chkfj、Pydev Official Site