Показать статистику
0 голосов
от (2.5тыс. баллов)

В предыдущих версиях Ubuntu, таких как 18.04 LTS, я смог установить WINE Launcher Creator .

Но в современной Ubuntu 20.04 LTS он не устанавливается со следующими сообщениями:

cd ~/Downloads
wget -c https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/wine-launcher-creator/wine-launcher-creator_1.0.8-1_all.deb
sudo apt-get install ./wine-launcher-creator_1.0.8-1_all.deb

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Note, selecting 'wine-launcher-creator' instead of './wine-launcher-creator_1.0.8-1_all.deb'
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:
 wine-launcher-creator : Depends: python-qt4 but it is not installable
E: Unable to correct problems, you have held broken packages.
142 просмотров 1 ответов

1 Ответ

0 голосов
от (26.4тыс. баллов)

Проблема вызвана тем, что пакета python-qt4  нет в репозиториях Ubuntu 20.04 LTS .

Поэтому нам нужно добавить специальный Qt4 PPA и установить с помощью следующих команд:

sudo add-apt-repository ppa:rock-core/qt4
sudo apt-get update

cd ~/Downloads
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/q/qt-assistant-compat/libqtassistantclient4_4.6.3-7build1_amd64.deb
sudo apt-get install ./libqtassistantclient4_4.6.3-7build1_amd64.deb

wget -c http://archive.ubuntu.com/ubuntu/pool/universe/p/python-qt4/python-qt4_4.12.1+dfsg-2_amd64.deb
sudo apt-get install ./python-qt4_4.12.1+dfsg-2_amd64.deb

wget -c https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/wine-launcher-creator/wine-launcher-creator_1.0.8-1_all.deb
sudo apt-get install ./wine-launcher-creator_1.0.8-1_all.deb

а затем наслаждайтесь приложением WINE Launcher Creator.

...