https://github.com/MCMrARM/mcpelauncher-linux를 다운로드하는 방법은 무엇입니까?

https://github.com/MCMrARM/mcpelauncher-linux를 다운로드하는 방법은 무엇입니까?

404 오류가 발생하여 다운로드할 수 없습니다. 또한 필요 libprotobuf17하지만 설치할 수 없다는 메시지가 표시됩니다. 또한 저는 KDE Neon과 64비트를 사용하고 있습니다.

내가 할 때마다

sudo add-apt-repository 'deb http://mcpelauncher.mrarm.io/apt/ubuntu/ bionic main'

오류 404가 표시되고 이상한 IP 주소가 표시됩니다. 이것이 내가 얻는 것입니다:

alex@alex-HP-Pavilion-dv6-Notebook-PC:~$ sudo apt-get install msa-daemon msa-ui-qt mcpelauncher-client mcpelauncher-ui-qt
Reading package lists... Done
Building dependency tree       
Reading state information... Done
mcpelauncher-client:i386 is already the newest version (20190511-122010-88ad96a~disco).
Starting pkgProblemResolver with broken count: 1
Starting 2 pkgProblemResolver with broken count: 1
Investigating (0) mcpelauncher-ui-qt:amd64 < none -> 20190511-122041-98ac412~disco @un puN Ib >
Broken mcpelauncher-ui-qt:amd64 Depends on libzip5:amd64 < none @un H >
Broken mcpelauncher-ui-qt:amd64 Depends on libprotobuf17:amd64 < none @un H >
Done
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:
 mcpelauncher-ui-qt : Depends: libzip5 but it is not installable
                      Depends: libprotobuf17 but it is not installable
E: Unable to correct problems, you have held broken packages.

답변1

어떤 경로로 다운로드 받으셨는지 모르겠지만, Git 저장소이므로 git저장소를 clone하는 명령어를 사용하여 다운로드하는 것을 권장합니다. 이렇게 하려면 먼저 git설치되어 있지 않은 경우 설치하세요.

sudo apt update
sudo apt install git

그런 다음 cd다운로드하려는 디렉토리로 이동하고 다음을 실행하십시오.

git clone https://github.com/MCMrARM/mcpelauncher-linux.git

성공했다고 가정하면(테스트할 때와 마찬가지로) 다운로드된 저장소는 새로 생성된 mcpelauncher-linux디렉터리와 해당 콘텐츠로 구성됩니다.


웹 브라우저에서 ZIP 아카이브로 다운로드하고 싶다면 그렇게 할 수 있습니다. "복제 또는 다운로드" 버튼을 클릭한 다음 "ZIP 다운로드" 링크를 클릭하세요. 이 특정 저장소의 경우https://github.com/MCMrARM/mcpelauncher-linux/archive/master.zip.

이러한 기술이 작동하지 않으면 인터넷 연결(또는 프록시 서버를 통해 웹을 탐색하는 경우 프록시 구성)에 문제가 있거나 GitHub에 일시적인 문제가 있을 수 있습니다(이전에 수행한 작업을 그대로 시도한 경우). 지금은 작동합니다).

관련 정보