我想运行命令:
repo init -u https://android.googlesource.com/platform/manifest -b android-4.1.1_r6
得到以下输出:
回溯(最近的呼叫最后):
文件“/ home / anu / bin / repo”,第91行,< module>
导入readline
ImportError:没有名为readline的模块
因此,为了解决上述问题,我尝试使用命令pip install readline和easy_install readline安装readline,但这两个命令都输出以下内容:
/usr/bin/ld: cannot find -lncurses collect2: ld returned 1 exit status error: command 'gcc' Failed with exit status 1
我有ubuntu 12.04与python 2.7.3并且想要构建android源代码.
解决方法
sudo apt-get install libncurses5-dev
然后重新运行命令