Linux系統下安裝GoogleGoogle拼音IME的方法。目前,網路上提供的拼音IME非常多,不過,不少網友會覺得使用Google拼音IME這款軟體更順手。那麼,Google拼音IME怎麼安裝使用呢?在今天的教程中,我們就以Linux系統為例子,給大家分享一下Google拼音IME的安裝方法。需要說明的是,本操作方法是基於Linux系統的CentOS 5進行的!
Google拼音IME安卓版
推薦:Google拼音IME安卓版
SCIM-GooglePinyin 項目試圖將 Android 上的 Google 拼音IME移植到 GNU/Linux 平台。SCIM-GooglePinyin 基於 SCIM 這個通用IME平台,目前仍然在開發之中,不過其原始碼已經可以通過 github 擷取。
這個linux下的GoogleIME很好用哈!下面是Google網站上的介紹(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
安裝前準備:
git的安裝:
# yum -y install git
安裝步驟(需要自己編譯):
A. 擷取代碼:
# git clone git://github.com/tchaikov/scim-googlepinyin.git
# ls
# cd scim-googlepinyin
B. 編譯前提:
上面給的連結裡面有介紹怎麼編譯的,但少提了幾個必要元件,這裡列一下:
* autotools-dev
* libgtk2.0-dev
* libscim-dev
* libtool
* automake1.9
用下面命令看看是不是安裝了,如果沒有,會自動幫你安裝上:
$ aptitude install autotools-dev libgtk2.0-dev libscim-dev libtool automake1.9
C. 編譯:
記住系統必須先存在SCIM(沒有的話 sudo apt-get install scim 一下)
$ 。/autogen.sh
$ make
$ sudo make install
大功告成,重啟下SCIM然後就能體驗了。
P.S. 測試沒有通過,主要原因是有幾個檔案無法下載到,應該是本系統的軟體源的問題。
Git is.。。
Git is a free & open source, distributed version control system designed to handle everything from small to very large projects with speed and efficiency.
Every Git clone is a full-fledged repository with complete history and full revision tracking capabilities, not dependent on network access or a central server. Branching and merging are fast and easy to do.
Git is used for version control of files, much like tools such as Mercurial, Bazaar, Subversion, CVS, Perforce, and Visual SourceSafe.