64비트 Ubuntu 14.04 Android 개발 환경 설치
솔루션:
$ sudo apt-get install lib32stdc++6 lib32z1 lib32ncurses5 lib32bz2-1.0
간략한 분석:
인터넷에서 나오는 방법은요.
$ sudo apt-get install ia32-libs
그러나 다음과 같은 정보가 나타납니다.Package ia32-libs is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
<span style="color:#FF0000;">lib32z1 lib32ncurses5 lib32bz2-1.0</span>
E: Package 'ia32-libs' has no installation candidate
ia32-libs가 폐기되었으니 대체할 가방이 있어야 합니다.
오류 정보를 읽은 후, 나는 이 세 개의 가방을 설치하려고 한다
$ sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
eclipse ,
[2014-06-19 14:47:45 - Test] /home/star/software/adt-bundle-linux-x86_64-20140321/sdk/build-tools/android-4.4.2/aapt: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
[2014-06-19 14:47:45 - appcompat_v7] /home/star/software/adt-bundle-linux-x86_64-20140321/sdk/build-tools/android-4.4.2/aapt: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory
설치$ sudo apt-get install lib32stdc++6
참고 자료
1. 64비트 Ubuntu의 32비트 지원 기능을 여는 방법
2, Ubuntu 14.04 X64 설치 안드로이드 SDK
---------------------------------------------
1. 안드로이드 SDK Manager 업데이트 해결, 느린 다운로드
C:\Windows\System32\drivers\etc\hosts
203.208.46.146 www.google.com
74.125.113.121 developer.android.com
203.208.46.146 dl.google.com
203.208.46.146 dl-ssl.google.com Ubuntu
sudo vim/etc/hosts
Android SDK Manager-->Tools-->Options-->Others-->Force https...
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.