Ubuntu 16.04에 Cura 3.1을 설치할 수 없습니다.

Ubuntu 16.04에 Cura 3.1을 설치할 수 없습니다.

Cura 슬라이서 소프트웨어를 내 컴퓨터에 다운로드하려고 하는데 계속 중단됩니다. 시도했는데 sudo apt update 다음 메시지가 나타납니다.

Aborted (core dumped)
Reading package lists... Done
N: Ignoring file 'sp' in directory '/etc/apt/sources.list.d/' as it has no filename extension
N: Ignoring file 'google-chrome.lis' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Problem executing scripts APT::Update::Post-Invoke-Success 'if /usr/bin/test -w /var/cache/app-info -a -e /usr/bin/appstreamcli; then appstreamcli refresh > /dev/null; fi'
E: Sub-process returned an error code

나는

sudo apt-get install cura    

하지만 나는 다음을 얻습니다 :

Reading package lists... Done
Building dependency tree       
Reading state information... 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:
 cura : Depends: python3-uranium but it is not going to be installed
        Depends: qml-module-qtqml-models2 but it is not installable
        Depends: qml-module-qtquick-controls but it is not installable
        Depends: qml-module-qtquick-dialogs but it is not installable
        Recommends: cura-resources-firmware but it is not going to be installed
        Recommends: cura-plugins-all but it is not going to be installed
        Recommends: python3-numpy-stl but it is not installable
N: Ignoring file 'sp' in directory '/etc/apt/sources.list.d/' as it has no filename extension
N: Ignoring file 'google-chrome.lis' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Unable to correct problems, you have held broken packages.

나는 시도했다

sudo ppa-purge ppa:thopiekar/cura    

하지만 그것은 나에게 말한다 :sudo: ppa-purge: command not found

저는 Linux를 처음 접했고 경험이 거의 없습니다. 당신이 나에게 말하려는 내용을 평신도의 용어로 설명해주세요. 미리 감사드립니다.

답변1

Cura의 현재 안정 버전은 PPA에서 사용할 수 있습니다. ppa:토피카르/큐라:

sudo add-apt-repository ppa:thopiekar/cura
sudo apt-get update 
sudo apt-get install cura

Cura의 최첨단 버전을 원한다면 다음을 사용할 수 있습니다.ppa:thopiekar/cura-master

sudo add-apt-repository ppa:thopiekar/cura-master
sudo apt-get update
sudo apt-get install cura

답변2

허용된 답변에 언급된 저장소는 오래되었으며 2.7 버전의 cura만 있습니다. 현재 설치하는 더 좋은 방법은 다음에서 다운로드하는 것입니다.큐라 사이트곧장.

wget https://download.ultimaker.com/current/Cura-3.4.1.AppImage
sudo mv Cura-3.4.1.AppImage /usr/bin/cura
sudo chmod +x /usr/bin/cura

이제 그냥 달릴 수 있다cura

관련 정보