3

For those looking for the answer, there it's, as it's not clear on other websites.

This is required at least by the Intel compiler. Maybe it helps also for other software.

The Quantum Physicist
  • 24,987
  • 19
  • 103
  • 189

1 Answers1

12

Just run those commands in your terminal.

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install build-essential gcc-multilib rpm libstdc++6:i386 libgcc1:i386 zlib1g:i386 libncurses5:i386

Or as root remove the "sudo" from them.

The Quantum Physicist
  • 24,987
  • 19
  • 103
  • 189