Cura源码在Ubuntu15.04上编译脚本(成功)

大小:M

权限:

来源:

更新:2017-06-21

Cura是著名的3D打印切片和控制软件。新的版本采用Qt和Python进行了重构,界面变化也非常大,目前还在开发中,运行问题还有不少。这里介绍如何从源代码进行Cura的编译,可以抢先体验新版的界面设计和根据需要进行订制。
这个把相关的脚本都集成到一起了。做了几个重要的改进,基本可以成功运行了。
官方原脚本在这里:https://github.com/Ultimaker/cura-build
主要的改进包括:
1、可以自动判断目录,如没有自动创建,如有则进行源码更新。原脚本安装后更新需要手工一步步进行,很麻烦。
2、改变gtest的安装源到github,原来的是从google下载,由于国内访问不到会导致编译出错。
3、合并 plugins目录,将Uranium\plugins复制到Cura\plugins下,避免找不到插件的错误。
注意:
1、进libArcus将Cmakelists.txt里的add_subdirectory(examples)这一行注释掉,要不编译不过去。
2、目前CuraEngine编译还有些问题,无法执行切片操作。
把下面的内容保存到cura.sh,然后sudo chmod +x cura.sh添加执行权限,然后./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 "============================================================================="
复制代码
声明:3D打印资源库(3dzyk)内网友所发表的所有内容及言论仅代表其本人,并不代表3D打印资源库(3dzyk)观点和立场;如对文章有异议或投诉,请联系kefu@3dzyk.cn。
相关推荐
  • Ultimaker3-安装和使用手册

    Ultimaker3-安装和使用手册
  • 主流3d打印机主控板对比分析

    主流3d打印机主控板对比分析
  • 【主板详解之难点分析】Ramp1.4 热敏电阻配置介绍

    【主板详解之难点分析】Ramp1.4 热敏电阻配置介绍
  • ATmega328针脚图

    ATmega328针脚图
  • rumba主板使用说明及驱动下载

    rumba主板使用说明及驱动下载
B Color Smilies

版权声明

会员在本站下载的模型,只拥有模型的使用权,著作权归原作者及网站所有。未经合法授权,会员不得以任何形式发布、传播、复制、转售该模型。 如若您的权益被侵害请联系网站客服。

推荐产品

联系
我们
快速回复 返回顶部 返回列表