如何从包管理器中获取 mit-scheme?

如何从包管理器中获取 mit-scheme?

我安装了最新版本的 x64 lubuntu,我想安装一个方案解释器。奇怪的是,在 Synaptic 中,只有调试器和文档可供安装。

我宁愿不编译我自己的版本,因为这在将来会很难维护。

我该如何解决这个问题?

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.

答案1

i386您需要在系统上启用软件包的安装amd64

为此,请输入以下命令:

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

如需了解更多信息,请参阅Debian 多架构维基


参考

相关内容