How to get mit-scheme from the package manager? [closed]
Solution 1:
You need to enable the installation of i386
packages on your amd64
system.
To do so, enter the following commands:
dpkg --add-architecture i386
apt-get update
sudo apt-get install ia32-libs
apt-get update
sudo apt-get install libmhash2:i386 mit-scheme:i386
For further information see the Debian Multiarch Wiki.
Reference