web-dev-qa-db-fra.com

Comment obtenir mit-scheme du gestionnaire de paquets?

J'ai installé la dernière version de x64 lubuntu et je souhaite installer un interpréteur de schéma. Curieusement, dans Synaptic, seuls le débogueur et la documentation sont disponibles pour l’installation.

Je préférerais ne pas compiler ma propre version car cela serait difficile à maintenir à l'avenir.

Comment résoudre ce problème?

mike@ubuntu:~/Desktop/aplan$ Sudo apt-get install mit-scheme
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 mit-scheme:i386 : Depends: libmhash2:i386 but it is not going to be installed
                   Recommends: mime-support:i386 but it is not installable
E: Unable to correct problems, you have held broken packages.
9
Mikhail

Vous devez activer l'installation des packages i386 sur votre système AMD64.

Pour ce faire, entrez les commandes suivantes:

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

Pour plus d'informations, reportez-vous à le wiki de la multiarchie Debian .


Référence

2
Lucio