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:thopiekar/cura:

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

承認された回答に記載されているリポジトリは古く、curaのバージョン2.7しかありません。現在、インストールするより良い方法は、以下からダウンロードすることです。キュラサイト直接。

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

関連情報