红联Linux门户
Linux帮助

Ubuntu下运行ACTS

发布时间:2016-04-28 09:38:48来源:linux网站作者:尘埃2

1、下载acts测试包

https://android.googlesource.com/platform/tools/test/connectivity/+/master/acts


2、python运行时错误,安装一下软件包

sudo apt-get install python-setuptools

sudo apt-get install python-pip

sudo apt-get install python-concurrent.futures


3、安装acts

sudo python setup.py develop


4、测试acts安装是否正确

act.py -c sample_config.json -tb SampleTestBed -tc SampleTest


测试ubuntu版本16.04


在ubuntu 12.04下安装python3.4步骤

ubuntu12.04下apt-get默认安装python3是3.2版本,因此需要自己更新源来安装python3.4 (目前的最新版本,以后需要更新的版本方法相同)


添加源以及安装步骤如下:

sudo apt-get install python-software-properties #没有这步,下一步会提示add-apt-repository未找到.

sudo add-apt-repository ppa:fkrull/deadsnakes #添加ppa源

sudo apt-get update; sudo apt-get install python3.4


此外,还需要安装pip来使用第三方模块,使用脚本来安装

curl -O https://raw.githubusercontent.com/pypa/pip/master/contrib/get-pip.py
sudo python3.4 get-pip.py


验证pip版本,确实是python3.4的

$ pip -V
pip 7.1.0 from /usr/local/lib/python3.4/dist-packages (python 3.4)


本文永久更新地址:http://www.linuxdiyf.com/linux/20151.html