Eclipse Android Plugin -- libncurses.so.5 Eclipse Android Plugin -- libncurses.so.5 linux linux

Eclipse Android Plugin -- libncurses.so.5


This solved the problem entirely:

yum install ncurses-libs.i686 libstdc++.i686 libgcc.i686


This is happening because Android SDK is a 32bit application and require some 32bit shared libraries,

I had same issue on Ubuntu 64 bits, and fixed with:

$ sudo apt-get install ia32-libs


Install just libncurses5:

$ sudo apt-get install libncurses5:i386

ia32-libs will install much unnecessary libs.