Eclipse 安装配置指南
安装Eclipse
安装Subclipse
配置Android
一、Eclipse的安装。
1、安装JDK6
下载JDK并进行安装 http://www.oracle.com/technetwork/java/javase/downloads/index.html
当前最新版本为jdk-6u22
2、下载安装 Eclipse Classic
地址: http://www.eclipse.org/downloads/
当前最新版本为 eclipse-SDK-3.6.1-win32-x86_64.zip
把解压文件到D:\Developer\eclipse目录
二、常用插件安装
1、安装 The Eclipse Project Updates
Help --> Install New Software --> The Eclipse Project Updates --> 选择安装项
2、安装 helios 支持组件。
Help --> Install New Software --> Work with: Helios - http://download.eclipse.org/releases/helios
--> Programming Languages --> C/C++ Development Tools
JavaScript Development Tools
PHP Development Tools(PDT) SKD Feature
......
--> General Purpose Tools --> Marketplace Client //这是一个类拟于AppStore的软件超市
通过Markeplace Client可以更加轻松的安装组件到Eclipse平台上
3、安装Subversion
Install Subclipse in Eclipse 3.x
3.1、如果你的主机不能访问到http://subclipse.tigris.org 网站,请添加一条host记录:
204.16.104.146 subclipse.tigris.org
3.2、添加一个新的Repository。
Name: Subclipse 1.6.x (Eclipse 3.2+)
URL: http://subclipse.tigris.org/update_1.6.x
3.3、选择Subclipse --> 安装
3.4、添加一个Repository Location
打开SVN Repository Exploring --> New --> Repository Location
注意:可能需要安装JavaHL ,在64bit系统下需要下载SlikSVN
注意:可能需要修改文件编码格式:window->General->workspace->Text file encoding 默认为GBK,可以设置成UTF-8
4、安装GAE开发环境
可以通过Marketplace安装Google Plugin for Eclipse,可以安装如下组件:
Google App Engine Java SDK 1.4.0
Goolge Plugin for Eclipse 3.6
Google Web Toolkit SDK 2.1.1
未完....
附加参考:
配置 Windows 版 Eclipse 以便与 Google App Engine 配合使用
5、安装Python开发环境
# 安装新版本Python,目前版本有2.7.1和3.1.3,这两个版本是不兼容的。
# 通过Marketplace安装Pydev - Python IDE for Eclipse
三、Andorid 开发环境
1、下载最新的Android SDK, 并安装,配置系统的Path变量
官方网站好像需要FQ才能访问,下载当前最新版本:installer_r09-windows.exe
安装完SDK包后,启动"SDK Manager.exe",进入真正的下载页,下载成功后把如下配置添加到环境变量Path中.
C:\Program Files (x86)\Android\android-sdk-windows\tools
参考:
Platform | Package | Size | MD5 Checksum |
---|---|---|---|
Windows | android-sdk_r09-windows.zip | 32779808 bytes | 1a1bb8fad80bcc2dfbd00443b9a13e6b |
installer_r09-windows.exe (Recommended) | 32828818 bytes | a0185701ac0d635a4fbf8169ac949a3c5b3d31e0 | |
Mac OS X (intel) | android-sdk_r09-mac_x86.zip | 28829553 bytes | ef3102fdbbbbd9bf4d9b572624aa9dc1 |
Linux (i386) | android-sdk_r09-linux_x86.tgz | 26917824 bytes | 9fefac5ff85d329836439f6e77a78cae |
官方的一下安装向导: Installing the SDK
Here's an overview of the steps you must follow to set up the Android SDK:
1. Prepare your development computer and ensure it meets the system requirements.
2. Install the SDK starter package from the table above.
(If you're on Windows, download the installer for help with the initial setup.)
3. Install the ADT Plugin for Eclipse (if you'll be developing in Eclipse).
4. Add Android platforms and other components to your SDK.
5. Explore the contents of the Android SDK (optional).
2、ADT的安装和配置
help --> Install New Software... --> Add...
--> Name: android
Location: https://dl-ssl.google.com/android/eclipse/
--> 安装Developer Tools
3、配置Android SDK 目录
Window --> Preferences --> Android --> SDK Location --> 填写"android-sdk-windows"根目录
"C:\Program Files (x86)\Android\android-sdk-windows\" --> Apply --> OK
接着:
Window --> Android SDK and AVD Manager --> 可以有3上选项
1、Virtual devices 虚拟设备,你可以创建一个开发用到的虚拟设备,例如:
Name: Android2.2 Target: Android 2.2 - API Level 8
Name: Android2.3 Target: Android 2.3.1 - API Levle 9
2、Installed packages 你安装过的包列表
3、Available packages 你的可更新列表
参考:
http://www.cnblogs.com/gordonchao/archive/2011/01/26/1943643.html
http://blogold.chinaunix.net/u2/70634/showart_2188038.html