Error installing Android Studio on Ubuntu 16.04

The following error occurred while trying to install Android Studio on Ubuntu. How to solve this problem? I am using jdk 1.8 enter image description here

+5
source share
2 answers

If you use 64-bit Ubuntu, this will solve it for you

sudo yum install compat-libstdc++-296.i686 compat-libstdc++-33.i686 ncurses-libs.i686 compat-libstdc++-33.x86_64 

or

 sudo apt-get install compat-libstdc++-296.i686 compat-libstdc++-33.i686 ncurses-libs.i686 compat-libstdc++-33.x86_64 
+3
source

For UBUNTU 16.04 LTS just run this command:

 sudo apt-get install lib32stdc++6 

then restart Android Studio, it will work.

+3
source

All Articles