2021年1月24日日曜日

Debian 10(Buster)/Ubuntu 20.04/CentOS8.2に3DプリンタのスライサーアプリUltimaker Cura4.8.0/4.9.0をインストールする

Ultimaker Curaで3Dデータをスライスして、3Dプリンターに出力するgcodeに変換する事ができます。

〇Ultimaker Curaの画面(Debian 10)

〇Ultimaker Curaの画面(Ubuntu 20.04)

〇Ultimaker Curaの画面(CentOS8.2)

インストール方法

以下のコマンドを実行します。
2021/04/26追記:version4.9.0は以下の手順でインストールします。
sudo mkdir -p /opt/cura

cd /opt/cura

sudo wget https://github.com/Ultimaker/Cura/releases/download/4.9.0/Ultimaker_Cura-4.9.0.AppImage

sudo chmod +x /opt/cura/Ultimaker_Cura-4.9.0.AppImage

cat << EOF | sudo tee /usr/share/applications/cura.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/cura/Ultimaker_Cura-4.9.0.AppImage
Name=Ultimaker Cura
Categories=Development;
EOF

・旧version4.8.0のインストール
sudo mkdir -p /opt/cura

cd /opt/cura

sudo wget https://github.com/Ultimaker/Cura/releases/download/4.8.0/Ultimaker_Cura-4.8.0.AppImage

sudo chmod +x /opt/cura/Ultimaker_Cura-4.8.0.AppImage

cat << EOF | sudo tee /usr/share/applications/cura.desktop
[Desktop Entry]
Version=1.0
Type=Application
Terminal=false
Exec=/opt/cura/Ultimaker_Cura-4.8.0.AppImage
Name=Ultimaker Cura
Categories=Development;
EOF

関連情報

・Ultimaker Curaのgithubリポジトリ
https://github.com/Ultimaker/Cura

・Ultimaker Curaに関する他の記事は、こちらを参照してください。

0 件のコメント:

コメントを投稿