大概有两种方法,一种是通过可视化界面进行操作,另外一种就在终端进行操作,第一种方法比较容易,建议初学者可以尝试使用,我已经在ubuntu10.04,12.04,13.04三个版本中都已经成功安装。
Ubuntu 12.04中文输入法的安装
到这里,大家已经可以成功安装拼音输入了,接下来是另外一个方法,需要下载github,只是我们学校把github的端口给限制了,无法链接,所以下面的方法我没有试过。大家在外面的话可以尝试下
安装步骤(需要自己编译):
Linux下安装Google拼音输入法
2011-02-11 21:41:34| 分类: linux | 标签: |字号大中小 订阅
CentOS 5中自带输入法平台的是SCIM,Fedora 10以后自带的是iBUS,但是使用起来还是没有sogou,谷歌输入法舒服。本文以CentOS 5.5为例,介绍SCIM-GooglePinyin的安装全过程。
SCIM-GooglePinyin 项目试图将 Android 上的 Google 拼音输入法移植到 GNU/Linux 平台。SCIM-GooglePinyin 基于 SCIM 这个通用输入法平台,目前仍然在开发之中,不过其源代码已经可以通过 github 获取。
这个linux下的谷歌输入法很好用哈!下面是谷歌网站上的介绍(http://code.google.com/p/scim-googlepinyin/):
scim-googlepinyin tries to bring the open source Google pinyin IME for Android to GNU/Linux. And customize it to fit the need on regular desktop instead of on mobile device by following Google Pinyin on Windows.
This port is almost a line-by line translation from Java to C++. It's still under development. And it needs more testing and bug fixing for sure.
scim-googlepinyin is hosted at github.
To get a working copy
· git clone git://github.com/tchaikov/scim-googlepinyin.git
A. 获取代码:
从http://github.com/tchaikov/scim-googlepinyin
处获取代码并解压
$ cd scim-googlepinyin
或者
# git clone git://github.com/tchaikov/scim-googlepinyin.git
# ls
# cd scim-googlepinyin
B. 编译前提:
上面给的链接里面有介绍怎么编译的,但少提了几个 必需组件,这里列一下:
* autotools-dev
* libgtk2.0-dev
* libscim-dev
* libtool
* automake
用下面命令看看是不是安装了,如果没 有,会自动帮你安装上:
$aptitude install autotools-dev libgtk2.0-dev libscim-dev libtool automake1.9
或者
$ aptitude install autotools-dev libgtk2.0-dev libscim-dev libtool automake
C. 编译:
记住系统必须先存在SCIM(没有的话 sudo apt-get install scim 一下)
请执行命令
代码:
sudo apt-get install build-essential
$ ./autogen.sh
$ make
$ sudo make install
现在重启scim:
关闭scim:pkill scim
然后启 动: scim -d
OK,去首选项里的“语言支持”的“输入法”选择scim作为默认输入法就OK了。
http://code.google.com/p/scim-googlepinyin/wiki/install