lib32bz2-1.0 Missing on Ubuntu 16.04 – Package Management Fix

16.04package-management

I have tried installing this package (needed for android studio).

This is the error i'm getting

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'

I have already tried:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32bz2-1.0

&

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32bz2-1.0:i386

I also searched on http://packages.ubuntu.com and did not find lib32bz2-1.0 for Ubuntu 16.04. So how do i get this package which is available for trusty and precise?

Best Answer

The naming scheme lib32bz2 suggest a very old-style way to manage the coexistence of multiple architectures on the same system. Use the package libbz2-1.0:i386 instead.

Related Question