Cura 3.1 kann nicht auf meinem Ubuntu 16.04 installiert werden

Cura 3.1 kann nicht auf meinem Ubuntu 16.04 installiert werden

Ich versuche, die Cura Slicer-Software auf meinen Computer herunterzuladen, aber ich werde immer wieder gestoppt. Ich habe es versucht sudo apt update und bekomme diese Meldung:

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

Ich habe versucht, mit zu installieren

sudo apt-get install cura    

aber dann bekomme ich:

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.

Ich habe versucht

sudo ppa-purge ppa:thopiekar/cura    

aber es sagt mir:sudo: ppa-purge: command not found

Ich bin neu bei Linux und habe nur wenig Erfahrung. Bitte erklären Sie mir in Laiensprache, was Sie mir sagen wollen. Vielen Dank im Voraus.

Antwort1

Die aktuelle stabile Version von Cura ist per PPA verfügbar: ppa:thopiekar/cura:

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

Wenn Sie eine hochmoderne Version von Cura möchten, können Sie verwendenppa:thopiekar/cura-master

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

Antwort2

Das in der akzeptierten Antwort erwähnte Repository ist veraltet und enthält nur die Version 2.7 von Cura. Derzeit ist der bessere Weg, es zu installieren, es herunterzuladen vonCura-Websitedirekt.

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

Jetzt kannst du einfach laufencura

verwandte Informationen