UBUNTU使用google官方android开发集成工具adt-64位报错

来源:互联网 发布:加工中心的编程分为 编辑:程序博客网 时间:2024/05/20 06:26

在使用ubuntu64位(13.10)时,下载来一个adt-bundle-linux-x86_64-20131030.zip,但是运行时报错:



查找资料后发现是系统位数与adb位数不一致,所以无法运行。


解决方法:

来自:http://stackoverflow.com/questions/13571145/android-adb-not-found

You can no longer install ia32-libs, so you must the individual 32 bit libraries needed by adb

sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5

And for Ubuntu 13.10:

sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5 lib32z1
亲测有效,分享不谢。
0 0
原创粉丝点击