Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

unable to run mksdcard sdk tool ubuntu 16.04 64bit

I downloded android studio and I tried to install on ubuntu 16.04 64 bit but it has "unable to run mksdcard sdk tool" error.

I checked all solutions but they produce errors too.

apt-get command log

like image 523
Soheil Jafari Avatar asked Jun 08 '16 22:06

Soheil Jafari


2 Answers

Seems that the only package you need is lib32stdc++6 for ubuntu 16.04

sudo apt-get install lib32stdc++6
like image 190
Jose CC Avatar answered Oct 10 '22 02:10

Jose CC


I just stumbled upon this issue myself. I guess that you found this topic from 2015?

Well, the given solution is a bit outdated but still pertinent: the 64bit Ubuntu 16.04 is indeed missing the 32bits version of the libraries and the
lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6 libraries advised to be installed seems to have been removed from the official repos.

However You can still get them with using this command:

sudo apt-get install libz1:i386 libncurses5:i386 libbz2-1.0:i386 libstdc++6:i386

Then the installer should work just fine Hope it will be of any help.

like image 23
seggman Avatar answered Oct 10 '22 00:10

seggman