Linux 16.04 - não é possível instalar o Android Studio?

0

Estou seguindo o guia oficial :

$ sudo apt-get install zlib.i686 ncurses-libs.i686 bzip2-libs.i686

Resultado:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package zlib.i686
E: Couldn't find any package by glob 'zlib.i686'
E: Couldn't find any package by regex 'zlib.i686'
E: Unable to locate package ncurses-libs.i686
E: Couldn't find any package by glob 'ncurses-libs.i686'
E: Couldn't find any package by regex 'ncurses-libs.i686'
E: Unable to locate package bzip2-libs.i686
E: Couldn't find any package by glob 'bzip2-libs.i686'
E: Couldn't find any package by regex 'bzip2-libs.i686'

E mesmo com:

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6

Resultado:

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0 lib32stdc++6
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package lib32bz2-1.0
E: Couldn't find any package by glob 'lib32bz2-1.0'
E: Couldn't find any package by regex 'lib32bz2-1.0'

Alguma idéia por quê? Como eu posso resolver isso?

    
por laukok 31.08.2016 / 08:57

1 resposta

1

Tente

sudo apt-get install lib32z1 lib32ncurses5 libbz2-1.0:i386 lib32stdc++6

Funcionou para mim. Se você não tem suporte multi-arch habilitado, você precisará executar

sudo dpkg --add-architecture i386
sudo apt-get update
    
por Anton G 07.09.2016 / 05:02