Ich versuche zu installierenFackelfür das image
Lua-Paket. Wenn ich bash install-deps
den Befehl ausführe, erhalte ich diesen Fehler:
...
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
Ich habe Qt4-Bibliotheken PPA hinzugefügt, indem ich die Antwort darauf verwendet habeFrage, aber wenn ich diese Befehle ausführe:
sudo apt update
sudo apt install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4
Ich erhalte diesen Fehler:
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
Erwähnenswert ist auch, dass ich ipython
gemäß der Antwort installiert habeFrage, aber ich erhalte immer noch den Fehler.
Antwort1
Ich glaube nicht, dass diese Fehler damit zusammenhängen, ob Sie "ipython" installiert haben oder nicht. Ich habe den gleichen Fehler erhalten ("Paket libqt4-dev konnte nicht gefunden werden") während der Installation von "libqt4-dev"(Ich möchte qt5 verwenden und meine Umgebung istUbuntu22.04auch). Die Lösung, die ich gefunden habe, war, ein neues „add-apt-repository“ hinzuzufügen:
$sudo add-apt-repository ppa:ubuntuhandbook1/ppa
$sudo apt-get update
Führen Sie dann den folgenden Befehl aus:
$sudo apt-get install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4
Ich hoffe, das ist hilfreich für Sie.