Issue
I'm new to android software development. I downloaded adt-bundle-linux-x86_64-20140702 , and also downloaded android system images for android 4.4W (API 20). when I created new android virtual devices I gave this error:
an android virtual devices that fail to load.
and when I start this virtual devices I gave this error:
Failed to start emulator: Cannot run program "/home/sosin/Desktop/ADT/adt-bundle-linux-x86_64-20140702/sdk//tools/emulator": java.io.IOException: error=2, No such file or directory
anyone can help me?
and when I tried to install these package I gave this error:
package are :
lib32z1 lib32ncurses5 lib32bz2-1.0 libc6-i386
error is:
The following packages have unmet dependencies: lib32bz2-1.0 : PreDepends: libc6-i386 (>= 2.9-18) but it is not going to be installed lib32ncurses5 : Depends: lib32tinfo5 (= 5.9-10) but it is not going to be installed Depends: libc6-i386 (>= 2.4) but it is not going to be installed lib32z1 : Depends: libc6-i386 (>= 2.4) but it is not going to be installed E: Unable to correct problems, you have held broken packages.
Solution
You should download less than version of your packages from packages.debian.org . Then install via dpkg -i path/filename
.If you don't use dpkg with the command line, you use aptitude offers. It offers you downgrade your packages.
use aptitude such as :
aptitude install libc6-i386 lib32z1
after it use this command , try to install lib32z1 lib32ncurses5 lib32bz2-1.0
sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
or for earlier version use :
sudo apt-get install ia32-libs
Answered By - PersianGulf
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.