-1

should i also install 32 bit libraries ?

sudo apt install -y libc6:i386 libncurses5:i386 libstdc++6:i386 lib32z1 libbz2-1.0:i386 wget

I am using a 64 bit os.

GAD3R
  • 4,317
  • 1
  • 23
  • 34

1 Answers1

0

According to the official website you need to install the 32-bit lib:

Required libraries for 64-bit machines:

If you are running a 64-bit version of Ubuntu, you need to install some 32-bit libraries with the following command:

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

To enable multi-arch :

sudo dpkg --add-architecture i386
sudo apt-get update
Community
  • 1
  • 1
GAD3R
  • 4,317
  • 1
  • 23
  • 34