web-dev-qa-db-ja.com

Ubuntu 18.04.1にWoeUSBをインストールできない

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.

正直、どうすればいいかわからない。オンラインで調べて何も見つからなかった。手伝ってくれる?

1
Aleningi

woeusbのパッケージャが一部の依存関係を省略しているようです。手で指定できます。

Sudo apt install woeusb p7Zip-full libwxbase3.0-0v5 libwxgtk3.0-0v5
1
waltinator