Não é possível instalar bibliotecas de 32 bits para o estúdio Android

1

Estou usando o Ubuntu 14.04 64bit OS e não consigo instalar bibliotecas de 32 bits para o Android Studio. Isso mostra que meus pacotes estão quebrados. Eu não sei como instalar o código a seguir. Isso mostra um problema de dependência.

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
lib32bz2-1.0 : PreDepends: libc6-i386 (>= 2.9-18) but it is not going to be installed
lib32ncurses5 : Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1) but it is not going to be installed
Depends: libc6-i386 (>= 2.4) but it is not going to be installed
lib32stdc++6 : Depends: lib32gcc1 (>= 1:4.1.1) but it is not going to be installed
Depends: libc6-i386 (>= 2.17) but it is not going to be installed
lib32z1 : Depends: libc6-i386 (>= 2.4) but it is not going to be installed

Qualquer um pode me ajudar por favor.

    
por Pechi Muthu Haridas 04.08.2016 / 19:35

1 resposta

1

Você pode tentar adicionar a arquitetura de 32 bits no dpkg - sudo dpkg --add-architecture i386 , ou pode editar o arquivo /etc/apt/sources.list , adicionar o repositório do Ubuntu 12.04 e executar sudo apt-get update .

    
por Gert Otten 04.08.2016 / 20:48