我使用的是ubuntu 16.04 - 64位。我尝试用.deb文件安装Start UML,从Ubuntu Software得到以下信息:
This software comes from a 3rd party and may contain non-free components然后我尝试用dpkg安装,得到的结果是:
$ sudo dpkg -i StarUML-v2.7.0-64-bit.deb
Selecting previously unselected package staruml.
(Reading database ... 212003 files and directories currently installed.)
Preparing to unpack StarUML-v2.7.0-64-bit.deb ...
Unpacking staruml (2.7.0) ...
dpkg: dependency problems prevent configuration of staruml:
staruml depends on libgcrypt11 (>= 1.4.5); however:
Package libgcrypt11 is not installed.
dpkg: error processing package staruml (--install):
dependency problems - leaving unconfigured
Processing triggers for hicolor-icon-theme (0.15-0ubuntu1) ...
Errors were encountered while processing:
staruml你能帮我解决这个问题吗?
发布于 2017-03-31 18:21:12
下载
wget http://security.ubuntu.com/ubuntu/pool/main/libg/libgcrypt11/libgcrypt11_1.5.3-2ubuntu4_amd64.deb使用dpkg安装lib
sudo dpkg -i libgcrypt11_1.5.3-2ubuntu4_amd64.deb使用dpkg安装StarUML
sudo dpkg -i StarUML-v2.8.0-64-bit.deb发布于 2017-10-13 13:31:37
在安装libgcrypt11_1.5.3-2ubuntu4_amd64.deb包之前尝试安装Start UML安装时,我遇到了这个错误。如果您完成了上述步骤,请运行:
sudo apt-get -f install它和我一起运行
发布于 2018-05-29 07:24:13
此外,您还必须安装libpango-1.0-0
sudo apt install libpango-1.0-0 https://stackoverflow.com/questions/37095617
复制相似问题