Estoy intentando instalarantorchaPara el image
paquete de lua. Cuando ejecuto bash install-deps
el comando, aparece este error:
...
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
Agregué PPA de bibliotecas Qt4 usando la respuesta a estopregunta, pero cuando ejecuto estos comandos:
sudo apt update
sudo apt install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4
Recibo este error:
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
También menciono que instalé ipython
de acuerdo con la respuesta de estepregunta, pero sigo recibiendo el error.
Respuesta1
No creo que estos errores estén relacionados con si instaló "ipython" o no. Tengo el mismo error("No se puede localizar el paquete libqt4-dev") al instalar "libqt4-dev" (quiero usar qt5 y mi entorno esubuntu22.04también). La solución que encontré fue agregar un nuevo "add-apt-repository":
$sudo add-apt-repository ppa:ubuntuhandbook1/ppa
$sudo apt-get update
luego ejecuta el comando:
$sudo apt-get install qt4-dev-tools libqt4-dev libqtcore4 libqtgui4
Espero que esto sea útil para usted.