Installing 32-bit libraries on Ubuntu 14.04 LTS 64-bit [duplicate]

Solution 1:

It appeared that the following commands were working for me:

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install libc6:i386 libncurses5:i386 libstdc++6:i386

I found it here: How to run 32-bit app in Ubuntu 64-bit?

Solution 2:

You can install 32 bits package with this command: sudo apt-get install package:i386
I think you have to begin with this one: sudo apt-get install libstdc++6:i386