64位ubuntu运行adt缺少libstdc++.so.6和libz.so.1文件
2014-08-19 03:08:37 标签: Ubuntu系统:ubuntu 14.04 64位
ADT版本:adt-bundle-linux-x86_64-20140702.zip
错误1:
- adb: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
- ‘adb version’ failed!
- Failed to parse the output of ‘adb version’:
解决方法:
sudo apt-get install lib32stdc++6
错误2:
- adt-bundle-linux-x86_64-20140702/sdk/build-tools/android-4.4W/aapt: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory
解决方法:
sudo apt-get install lib32z1
本文介绍了在64位Ubuntu 14.04上安装ADT-bundle时遇到的两个常见错误:缺少libstdc++.so.6和libz.so.1库文件,并提供了详细的解决步骤。
2396

被折叠的 条评论
为什么被折叠?



