Não consigo instalar o Cura 3.1 no meu Ubuntu 16.04

Não consigo instalar o Cura 3.1 no meu Ubuntu 16.04

Estou tentando baixar o software Cura slicer para o meu computador e continuo ficando paralisado. Eu tentei sudo apt update e recebo esta mensagem:

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

Eu tentei instalar com

sudo apt-get install cura    

mas então eu recebo:

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.

eu tentei

sudo ppa-purge ppa:thopiekar/cura    

mas isso me diz:sudo: ppa-purge: command not found

Sou novo no Linux e tenho pouca experiência. Por favor, explique o que você está tentando me dizer em termos leigos. Agradeço antecipadamente.

Responder1

A atual versão estável do Cura está disponível pelo PPA: ppa:thopiekar/cura:

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

Se você quiser uma versão mais recente do Cura - você pode usarppa:thopiekar/cura-master

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

Responder2

O repositório mencionado na resposta aceita está desatualizado, possui apenas a versão 2.7 do cura. Atualmente a melhor maneira de instalá-lo é baixá-lo emsite curadiretamente.

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

Agora você pode simplesmente corrercura

informação relacionada