在编译android源码时,用到lunch这个软件,可是ubuntu软件源中没有这个软件。
所以需要手动安装,步骤如下:
在ubuntu 10.04中安装lunch软件。
使用apt-get install lunch或者apt-get install python-lunch,都提示没有可用的安装包。
看来需要手动安装了。
下载lunch软件的地址:
http://packages.ubuntu.com/source/raring/lunch里边介绍了软件的依赖关系啥的。
中间lunch_0.4.0.orig.tar.gz这是源码。
下载下来后,用tar -zxvf lunch_0.4.0.orig.tar.gz进行解压。
进入解压目录:cd lunch-0.4.0
查看安装此软件依赖于那些软件。vi INSTALL这个文件。
把sudo那行,拷贝到命令行下:即执行如下命令:
sudo apt-get install openssh-client openssh-server python-setuptools help2man python-twisted-core python-gtk2
安装完毕后:在lunch-0.4.0这个文件夹下:
使用make && make install 。就安装完成了。
使用lunch --version命令,出现下图即表示安装正常。
安装过程如果提示如下错误:
一、
install lunch.desktop /usr/local/share/applications/
install: target `/usr/local/share/applications/' is not a directory: No such file or directory
make: *** [install] Error 1
二、
install lunch.1 /usr/local/share/man/man1/lunch.1
install: cannot create regular file `/usr/local/share/man/man1/lunch.1': No such file or directory
make: *** [install] Error 1
第一个错误是因为在share文件夹下没有applications这个文件夹。
第二个错误是因为在man文件夹下没有man1这个文件夹。
使用如下命令即可。
Mkdir /usr/local/share/applications
Mkdir /usr/local/share/man/man1
文章评论(0条评论)
登录后参与讨论