我需要安装WoeUSB来创建用于安装Windows的USB,所以我使用以下方法添加了存储库:
sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt update在此之前一切都很好。当我运行sudo apt install woeusb时,我得到了以下错误:
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:
woeusb : Depends: p7zip-full but it is not installable
Depends: libwxbase3.0-0v5 (>= 3.0.4+dfsg) but it is not installable
Depends: libwxgtk3.0-0v5 (>= 3.0.4+dfsg) but it is not installable
E: Unable to correct problems, you have held broken packages.老实说,我不知道该怎么做,我在网上查了没发现什么,你能帮我吗?
发布于 2019-03-27 14:52:19
看起来,woeusb的包程序忽略了一些依赖项。您可以手工指定它们:
sudo apt install woeusb p7zip-full libwxbase3.0-0v5 libwxgtk3.0-0v5https://askubuntu.com/questions/1129166
复制相似问题