Ultimaker

3D打印控制软件Cura源码在UbuntuKylin15.04上编译

十年热恋 提交于 2020-04-07 12:54:39
Cura在Linux上的版本总是下载不了,准备自己从源码进行编译。 下面是从 https://github.com/ultimaker 上下载的编译脚本。原始的脚本有一些问题,自己做了一些修改,如下: #!/bin/bash # This is a script which get the latest git repo and build them. # # Tested under ubuntu 15.04, lower versions don't have PyQT 5.2.1 which is required by cura cd ~ if [ ! -d "cura_dev" ]; then mkdir cura_dev fi cd cura_dev sudo apt-get install -y git cmake cmake-gui autoconf libtool python3-setuptools curl python3-pyqt5.* python3-numpy qml-module-qtquick-controls git clone https://github.com/Ultimaker/Cura.git git clone https://github.com/Ultimaker/Uranium.git git clone https:/