There are no packages lib32z1, lib32ncurses5, lib32stdc ++ 6 available in centos

During installation, Android Studio in Centers Cannot start SDK mksdcard tool. an error occurs. I am trying to find a solution on the network but cannot install

yum install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6

and the error is not an available package. I also updated yum. Therefore, please, if there is any solution for this.

+4
source share
3 answers

The below commands help me on centos-7
For lib32stdc ++ 6

sudo yum install libstdc++*

For lib32z1

sudo yum install zlib*

For 32-bit compilation of the sudo yum install zlib.i686 system

For lib32ncurses5

sudo yum install libncurses*
+3

Centos rpms lib32z1 lib32ncurses5 lib32bz2-1.0 lib32std++ 6

: yum install libstd++. i686

0

yum list available

The above command will list all available packages, including 32-bit ones, with the extension .i686, install those that are required.

thereby, similar packages in a RedHat-based system apt-get lib32stdc++6 lib32z1are listed below

yum -y install libstdc++.i686 zlib.i686

0
source

Source: https://habr.com/ru/post/1627797/


All Articles