安装ubuntu系统的教程网上很多,此处不再赘述。
由于ubuntu自带的输入法不太好用,就安装了googlepinyin输入法
在Ubuntu 14.04下安装Google拼音输入法,如下:
<span style="font-size:14px;">$ git clone git://github.com/tchaikov/scim-googlepinyin.git
$ cd scim-googlepinyin</span>
<span style="font-size:14px;">$ sudo apt-get install autotools-dev libgtk2.0-dev libscim-dev libtool automake</span>
C. 编译:<span style="font-size:14px;">$ ./autogen.sh
$ make
$ sudo make install</span>
现在重启scim:<span style="font-size:14px;">pkill scim</span>
然后启动:
<span style="font-size:14px;">scim -d</span>
去首选项里的“语言支持”的“输入法”选择scim作为默认输入法,然后注销就OK了。
二.配置ldtp开发环境
1.安装ldtp
1>获取代码
<span style="font-size:14px;">$ git clone https://github.com/ldtp/ldtp2.git
</span>
2>更改到ldtp2目录下
<span style="font-size:14px;">$ cd ldtp2/</span>
3>编译并安装
更改root权限
<span style="font-size:14px;">$ sudo su</span>
<span style="font-size:14px;">$ python setup.py build</span>
<span style="font-size:14px;">$ sudo python setup.py install</span>
2.安装gnome3
刚开始尝试了这个方法,不行
<span style="font-size:14px;">sudo add-apt-repository ppa:gnome3-team/gnome3</span>
<span style="font-size:14px;">sudo apt-get update</span>
<span style="font-size:14px;">sudo apt-get dist-upgrade</span>
<span style="font-size:14px;">sudo apt-get install gnome-themes-standard ubuntu-desktop gnome-shell</span>
后又尝试了以下方法1>安装gnome桌面
<span style="font-size:14px;">sudo apt-get install gnome-shell</span>
2>在登录框中可选gnome环境
<span style="font-size:14px;">sudo apt-get install gnome-session</span>
3>设置gnome的工具
<span style="font-size:14px;">sudo apt-get install gnome-tweak-tool</span>
3.安装python-atspi
<span style="font-size:14px;">gsettings set org.gnome.desktop.interface toolkit-accessibility true</span>
5.在命令行下测试配置环境
<span style="font-size:14px;">打开一个gedit文本
~>pyhton</span>
<span style="font-size:14px;">>>>from ldtp import *
>>>guiexist('*-gedit')</span>