当我想安装matlab支持时,它要求我编写matlab的安装位置。输入位置后,终端被阻塞,有一段时间没有显示任何内容。然后我关闭了航站楼
sudo apt-get install matlab-support现在,当我说升级或输入上面的代码时,它会在下面显示一个错误。该怎么办呢?
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to correct the problem发布于 2015-10-15 08:32:49
正如错误消息所述:
sudo dpkg --configure -a来自man dpkg
--configure package...|-a|--pending
Configure a package which has been unpacked but not yet
configured. If -a or --pending is given instead of package, all
unpacked but unconfigured packages are configured.
To reconfigure a package which has already been configured, try
the dpkg-reconfigure(8) command instead.
Configuring consists of the following steps:
1. Unpack the conffiles, and at the same time back up the old
conffiles, so that they can be restored if something goes wrong.
2. Run postinst script, if provided by the package.https://askubuntu.com/questions/685755
复制相似问题