Failed to start mksdcard sdk tool ubuntu 16.04 64bit

I started android studio and I tried to install 64 bits on ubuntu 16.04, but it has the error "unable to run mksdcard sdk tool" .

I checked all the solutions, but they also create errors.

apt-get command log

+5
source share
3 answers

It seems that you only need one lib32stdc++6 for ubuntu 16.04

 sudo apt-get install lib32stdc++6 
+3
source

I just stumbled upon this problem myself. I think you have found this section since 2015?

Well, this solution is a bit outdated, but still appropriate: in 64-bit Ubuntu 16.04 there really is no 32-bit version of libraries and
lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc ++ 6 libraries recommended for installation seem to have been removed from the official repositories.

However, you can still get them with this command:

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

Then the installer should work fine. Hope this helps.

+2
source

take a look at https://developer.android.com/studio/install.html

Choose Linux ...

Required libraries for 64-bit machines: If you are using a 64-bit version of Ubuntu, you need to install 32-bit libraries with the following command:

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

If you are using 64-bit Fedora, the command:

 sudo yum install zlib.i686 ncurses-libs.i686 bzip2-libs.i686 
+1
source

All Articles