老熟妇,老熟女chese老熟女,亚洲AV中文无码字幕色三,超碰欧美

Cura源碼在Ubuntu15.04上編譯腳本(成功) 

2016-04-18 11:56
Cura源碼在Ubuntu15.04上編譯腳本.webp
Cura是著名的3D打印切片和控制軟件。新的版本采用Qt和Python進行了重構(gòu),界面變化也非常大,目前還在開發(fā)中,運行問題還有不少。這里介紹如何從源代碼進行Cura的編譯,可以搶先體驗新版的界面設(shè)計和根據(jù)需要進行訂制。
這個把相關(guān)的腳本都集成到一起了。做了幾個重要的改進,基本可以成功運行了。
官方原腳本在這里:https://github.com/Ultimaker/cura-build
主要的改進包括:
1、可以自動判斷目錄,如沒有自動創(chuàng)建,如有則進行源碼更新。原腳本安裝后更新需要手工一步步進行,很麻煩。
2、改變gtest的安裝源到github,原來的是從google下載,由于國內(nèi)訪問不到會導(dǎo)致編譯出錯。
3、合并 plugins目錄,將Uranium\plugins復(fù)制到Cura\plugins下,避免找不到插件的錯誤。
注意:
1、進libArcus將Cmakelists.txt里的add_subdirectory(examples)這一行注釋掉,要不編譯不過去。
2、目前CuraEngine編譯還有些問題,無法執(zhí)行切片操作。
把下面的內(nèi)容保存到cura.sh,然后sudo chmod +x cura.sh添加執(zhí)行權(quán)限,然后./cura.sh就Ok了。需要的軟件會自動下,時間較長,需要耐心等待。
  1. #!/bin/bash
  2. # This is a script which get the latest git repo and build them.
  3. #
  4. # Tested under ubuntu 15.04, lower versions don't have PyQT 5.2.1 which is required by cura

  5. cd ~
  6. if [ ! -d "dev" ]; then
  7.     mkdir dev
  8. fi
  9. cd dev

  10. sudo apt-get install -y git cmake cmake-gui autoconf libtool python3-setuptools curl python3-pyqt5.* python3-numpy qml-module-qtquick-controls

  11. #protobuf.
  12. #https://github.com/google/protobuf.git

  13. echo "================================="
  14. echo "Install Protobuf."
  15. if [ ! -d "protobuf" ]; then
  16.     git clone https://github.com/Ultimaker/protobuf.git
  17.     cd protobuf
  18. else
  19.     cd protobuf
  20.     git pull        
  21. fi
  22. echo "================================="
  23. echo "get gtest."
  24. if [ ! -d "gtest" ]; then
  25.     git clone https://github.com/kgcd/gtest.git
  26. else
  27.     git pull
  28. fi
  29. echo "================================="
  30. echo "get gmock."
  31. if [ ! -d "gmock" ]; then
  32.     git clone https://github.com/krzysztof-jusiak/gmock.git
  33. else
  34.     git pull        
  35. fi
  36. echo "Build Protobuf."
  37. ./autogen.sh
  38. ./configure --prefix=/usr
  39. make -j4
  40. sudo make install
  41. sudo ldconfig
  42. cd python
  43. python3 setup.py build
  44. sudo python3 setup.py install
  45. cd ../..

  46. echo "================================="
  47. echo "Install libArcus."
  48. if [ ! -d "libArcus" ]; then
  49.     git clone https://github.com/Ultimaker/libArcus
  50.     cd libArcus
  51. else
  52.     cd libArcus
  53.     git pull        
  54. fi
  55. if [ ! -d "build" ]; then
  56.   mkdir build
  57. fi
  58. cd build
  59. #cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages
  60. cmake .. -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages
  61. make -j4
  62. sudo make install
  63. cd ../../

  64. echo "================================="
  65. echo "Install CuraEngine."
  66. if [ ! -d "CuraEngine" ]; then
  67.     git clone https://github.com/Ultimaker/CuraEngine.git
  68.     cd CuraEngine
  69. else
  70.     cd CuraEngine
  71.     git pull        
  72. fi
  73. if [ ! -d "build" ]; then
  74.   mkdir build
  75. fi
  76. cd build
  77. #cmake .. -DCMAKE_INSTALL_PREFIX=/usr
  78. cmake ..
  79. make -j4
  80. sudo make install
  81. cd ../../

  82. echo "================================="
  83. echo "Install Uranium."
  84. if [ ! -d "Uranium" ]; then
  85.     git clone https://github.com/Ultimaker/Uranium.git
  86.     cd Uranium
  87. else
  88.     cd Uranium
  89.     git pull        
  90. fi
  91. if [ ! -d "build" ]; then
  92.   mkdir build
  93. fi
  94. cd build
  95. #cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages -DURANIUM_PLUGINS_DIR=/usr/lib/python3.4/dist-packages
  96. cmake .. -DPYTHON_SITE_PACKAGES_DIR=/usr/lib/python3.4/dist-packages -DURANIUM_PLUGINS_DIR=/usr/lib/python3.4/dist-packages
  97. sudo make install
  98. cd ../..

  99. echo "================================="
  100. echo "Install Cura."
  101. if [ ! -d "Cura" ]; then
  102.     git clone https://github.com/Ultimaker/Cura.git
  103.     cd Cura
  104. else
  105.     cd Cura
  106.     git pull        
  107. fi
  108. cd ..
  109. echo "Build finished."

  110. echo "============================================================================"
  111. echo "Merge Resource into Cura/resources/"
  112. cp -rv Uranium/resources/* Cura/resources/
  113. echo "Merge Plugins into Cura/plugins/"
  114. cp -rv Uranium/plugins/* Cura/plugins/
  115. echo "Link:"$PWD"/CuraEngine/build/CuraEngine"
  116. sudo ln -s $PWD/CuraEngine/build/CuraEngine /usr/bin/CuraEngine

  117. echo "Starting Cura......"
  118. cd Cura
  119. python3 cura_app.py
  120. echo "You need add to /etc/profile:export PYTHONPATH=/usr/lib/python3/dist-packages"
  121. echo "============================================================================="
復(fù)制代碼
聲明:3D打印資源庫(3dzyk)內(nèi)網(wǎng)友所發(fā)表的所有內(nèi)容及言論僅代表其本人,并不代表3D打印資源庫(3dzyk)觀點和立場;如對文章有異議或投訴,請联系kefu@3dzyk.cn。
B Color Smilies
Cura源碼在Ubuntu15.04上編譯腳本(成功) 
亚洲国产一区二区三区| 国产精品亚洲欧美日韩| 一本一道人妻久久一区二区三区| 亚洲色成人综合小说| 亚洲福利电影院| 国产精品 久久久精品观看| 超碰av无码| 亚洲AV无码国产一区| cqtennis| 日本老熟妇在线喷水视频| 亚洲精品男人天堂| 搜索人妻一区二区三区| 亚洲精品久久久久久中文| 亚洲一区二区无码毛片| 性爱免费影视片| 久久综合狠狠| 国产精品久久一区二区无码| 天堂禾欧美城网站| 久久久无码精品亚洲日韩少妇按摩| AV日韩不卡了| 亚洲欧美日韩精品专区| 欧亚日韩国产一区二区三区| 99久久99久久免费精桃| 国产伦精品一区二区三区在线| 国产精品一区在线播放| 亚洲综合在线一| 一区二区三区四区在线播放| 亚洲AV中文无码字幕色最 | 精品久久影院| 日本中文字幕不卡在线观看| 久久噜噜| 三级电影网| 狠狠色AV一区| 亚洲欧洲中国视频| 亚洲VA无码手机在线电影| 免费高清无码视频| 668看片网| 亚洲色婷婷综合久久久久中文| 基地| 惠州市| 亚洲日本天堂|