溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

3D打印控制軟件Cura源碼如何在UbuntuKylin15.04上編譯

發(fā)布時間:2021-11-16 09:48:52 來源:億速云 閱讀:323 作者:小新 欄目:互聯(lián)網(wǎng)科技

這篇文章主要介紹了3D打印控制軟件Cura源碼如何在UbuntuKylin15.04上編譯,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

Cura在Linux上的版本總是下載不了,準(zhǔn)備自己從源碼進行編譯。

下面是從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://github.com/Ultimaker/CuraEngine.git
git clone https://github.com/Ultimaker/libArcus
git clone https://github.com/Ultimaker/protobuf.git

cd protobuf
./autogen.sh
./configure
make -j4
sudo make install
sudo ldconfig
cd python
python3 setup.py build
sudo python3 setup.py install
cd ../..

cd libArcus
if [ ! -d "build" ]; then
  mkdir build
fi
cd build
cmake .. -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages
make -j4
sudo make install
cd ../../

cd CuraEngine
if [ ! -d "build" ]; then
  mkdir build
fi
cd build
cmake ..
make -j4
cd ../../

cd Uranium
if [ ! -d "build" ]; then
  mkdir build
fi
cd build
cmake .. -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages -DURANIUM_PLUGINS_DIR=/usr/lib/python3.4/dist-packages

sudo make install
cd ../..

cp -rv Uranium/resources/* Cura/resources/
sudo ln -s $PWD/CuraEngine/build/CuraEngine /usr/bin/CuraEngine
cd Cura
python3 cura_app.py

#export PYTHONPATH=/usr/lib/python3/dist-packages

運行了很長時間,但結(jié)果不太妙啊。

編譯結(jié)果出錯:

QWidget: Must construct a QApplication before a QWidget
./ubuntu-15.04-build-script.sh: 行 62: 29168 已放棄               (核心已轉(zhuǎn)儲) python3 cura_app.py

嗯,這可是最新的開發(fā)代碼呀!出點錯是很正常的。

到https://github.com/ultimaker/Cura上去創(chuàng)建了個issue,提交上去,看誰能解決這個問題。

等了兩天,有其他人報同樣的錯誤,但沒有解決辦法。只好自己再進一步研究。

進python控制臺,一步一步運行源碼。發(fā)現(xiàn)主要是缺少UM這個對象,這是Uranium的支持庫,發(fā)現(xiàn)被安裝到了/usr/local/lib/python3/dist-packages里面。

設(shè)置:

export PYTHONPATH=/usr/local/lib/python3/dist-packages

再次運行,出現(xiàn)OpenGL的錯誤,可能是VirtualBox虛擬機的問題。后面再繼續(xù)。

更新所有的庫,可以用這個腳本:

#!/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 ~
cd cura_dev

cd protobuf
git pull
./autogen.sh
./configure
make -j4
sudo make install
sudo ldconfig
cd python
python3 setup.py build
sudo python3 setup.py install
cd ../..

cd libArcus
git pull
cd build
cmake .. -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages
make -j4
sudo make install
cd ../../

cd CuraEngine
git pull
cd build
cmake ..
make -j4
cd ../../

cd Uranium
git pull
cd build
cmake .. -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages  -DURANIUM_PLUGINS_DIR=/usr/lib/python3.4/dist-packages

sudo make install
cd ../..

cp -rv Uranium/resources/* Cura/resources/
sudo ln -s $PWD/CuraEngine/build/CuraEngine /usr/bin/CuraEngine
cd Cura
python3 cura_app.py

libgl出錯,可能是虛擬機的問題,下次用物理機試試。

將Virtualbox的“顯示-三維加速”去掉,libgl就不再報錯了。

感謝你能夠認真閱讀完這篇文章,希望小編分享的“3D打印控制軟件Cura源碼如何在UbuntuKylin15.04上編譯”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI