토치를 설치하는 동안 "E: libqt4-dev 패키지를 찾을 수 없습니다"(Ubuntu 22.04)

토치를 설치하는 동안 "E: libqt4-dev 패키지를 찾을 수 없습니다"(Ubuntu 22.04)

설치하려고 하는데토치image루아 패키지의 경우 . 명령을 실행하면 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또한 this의 답변에 따라 설치했다고 언급합니다.질문, 하지만 여전히 오류가 발생합니다.

답변1

나는 이 오류가 "ipython" 설치 여부와 관련이 없다고 생각합니다. 같은 오류가 발생했습니다("libqt4-dev 패키지를 찾을 수 없습니다") "libqt4-dev"를 설치하는 동안(qt5를 사용하고 싶은데 내 환경은 다음과 같습니다.우분투22.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

이것이 당신에게 도움이 되기를 바랍니다.

관련 정보