Wednesday 8 March 2017

Install 32-bit Libraries on Ubuntu 16.04

In 14.04, some tutorial says:

sudo apt-get -y install lib32z1 lib32ncurses5 lib32bz2-1.0

but I got:
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'

////////////////////////////////////////////////////////////////////////////////////////////

But I am in 16.04 and this worked for me:

sudo apt-get install libz1:i386 libncurses5:i386 libbz2-1.0:i386 libstdc++6:i386

Note that you might need to do this before:
sudo apt-get update


ref:
http://askubuntu.com/questions/775078/lib32bz2-1-0-missing-on-16-04
http://stackoverflow.com/questions/29916379/unable-to-run-mksdcard-tool-during-android-studio-installation-on-ubuntu-15-04/39567843

No comments:

Post a Comment