Я пытаюсь установитьфакелдля image
пакета lua. При запуске bash install-deps
команды получаю такую ошибку:
...
E: The repository 'https://ppa.launchpadcontent.net/rock-core/qt4/ubuntu jammy Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
Some portion of the update is failed
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Note, selecting 'git' instead of 'git-core'
Note, selecting 'libncurses-dev' instead of 'ncurses-dev'
Package ipython is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package libqt4-dev
E: Package 'ipython' has no installation candidate
Я добавил библиотеки Qt4 PPA, используя ответ на этот вопросвопрос, но когда я запускаю эти команды:
sudo apt update
sudo apt install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4
Я получаю эту ошибку:
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
Package libqtcore4 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
libqt5core5a:i386 libqt5core5a qtchooser:i386 qtchooser
Package libqtgui4 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Unable to locate package qt4-dev-tools
E: Unable to locate package libqt4-dev
E: Package 'libqtcore4' has no installation candidate
E: Package 'libqtgui4' has no installation candidate
Также отмечу, что я установил ipython
согласно ответу этоговопрос, но ошибка все равно возникает.
решение1
Я не думаю, что эти ошибки связаны с тем, установлен ли у вас "ipython" или нет. У меня та же ошибка("Не удалось найти пакет libqt4-dev") при установке "libqt4-dev"(я хочу использовать qt5 и моя средаUbuntu22.04(тоже). Решение, которое я нашел, состояло в том, чтобы добавить новый «add-apt-repository»:
$sudo add-apt-repository ppa:ubuntuhandbook1/ppa
$sudo apt-get update
затем выполните команду:
$sudo apt-get install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4
Надеюсь, это будет вам полезно.