-1

When i install 32-bit libraries through command

sudo apt-get install 32-bit 

libraries.Error occurred unable to locate package.

Please give me solution of this error.

Maythux
  • 87,123

1 Answers1

0

your problem is in

sudo apt-get install 32-bit 

There is no package called 32-bit for that you got this error

you should use the following

sudo apt-get install ia32-libs

PS if you use Ubuntu 13.10 or higher, you'll need install these packages instead:

sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
Maythux
  • 87,123