Total Pageviews

Saturday, 10 December 2011

ubuntu桌面下配置stanford专用版eclipse

看过斯坦福公开课《编程方法学》的同学们都知道,在视频中老师用的是stanford专用版的Eclipse。
斯坦福公开课《编程方法学》的讲义中,只讲了Windows和MacOS环境下Eclipse的安装配置,没有Linux环境下Eclipe的配置。恰巧我这两天迷恋ubuntu,所以就研究了一下ubuntu环境下斯坦福专用版的eclipse怎么配置。
网上搜了一下,其实斯坦福专用版的Eclipse其实就比正常版的Eclipse多了一个插件,在网上搜到一段英文的安装配置教程,操作步骤如下:
1. Install Eclipse and Open JDK
安装Eclipse和Open JDK,Eclipse可以通过ubuntu的软件中心安装,Open JDK ubuntu一般则会默认安装,不过在网上看到很多人建议把open JDK换成 Sun公司 Java JDK,这个也可以通过ubuntu的软件中心安装,不过是由Canonical合作伙伴提供的,找到sun-java6-jdk 安装就可以了。
2. Download the windows version of Eclipse from the Stanford’s CS106 website here: http://www.stanford.edu/class/cs106a/
在斯坦福CS106的官方网站下载 stanford eclipse的windows免安装版 下载地址:http://www.stanford.edu/class/cs106a/software/eclipse-helios-pc.zip
3. Extract it.
解压缩
4. Find the plugins directory in the newly extracted directory.
在解压缩文件中找到plugins文件夹
5. Copy the file edu.stanford.cs106_1.0.0.jar to the plugins folder of you Eclipse installation (mine was in /usr/lib/eclipse/plugins)
复制edu.stanford.cs106_1.0.0.jar文件,粘贴到你eclipse安装位置下的plugins文件夹(我的plugins文件夹位置 /usr/lib/eclipse/plugins)
Then everything seems to be the same as the IDE they use in the course.
这会你的Eclipse看起来就和课程里用的IDE一模一样了。
Here’s a quick command line, copy-and-paste to do this.
下面是一些快捷的命令行,你可以在终端里复制粘贴进行快速操作。
wget http://www.stanford.edu/class/cs106a/software/eclipse-helios-pc.zip
unzip eclipse-helios-pc.zip
sudo cp eclipse-helios-pc/plugins/edu.stanford.cs106_1.0.0.jar /usr/lib/eclipse/plugins

No comments:

Post a Comment