Skip to content

compilation

Sumukh edited this page Jun 12, 2025 · 1 revision

Installation/Compilation

remove older packages with conan remove "*" -s -b -f . delete .conan folders in Uers and C:/ or D:/

  1. In case you are using custom Cura Engine (Refer https://github.com/Ultimaker/CuraEngine/issues/2195 to fix conan error):

    • Install Cura Engine with the following steps:
         git clone https://github.com/ultimaker/conan-config.git
         cd conan-config
         git checkout 3226488623c642b40ca7ce3f62d3f33de046d11e
         cd ..
         conan config install ./conan-config
         conan remote remove cura-private
         git clone https://github.com/FracktalWorks/CuraEngine.git
         conan remove --locks
         cd CuraEngine
         conan create . curaengine/5.9.2@FracktalWorks/stable --build=missing --update
  2. Install Fracktory ("Refer https://github.com/Ultimaker/CuraEngine/issues/2195 to fix conan error):

       git clone https://github.com/ultimaker/conan-config.git
       cd conan-config
       git checkout 3226488623c642b40ca7ce3f62d3f33de046d11e
       cd ..
       conan config install ./conan-config
       conan remote remove cura-private
       git clone https://github.com/FracktalWorks/Fracktory-5.git
       cd Fracktory-5
       # If using custom Curaengine:
       conan install . --build=missing --update --require-override=curaengine/5.9.1@FracktalWorks/stable -o cura:devtools=True -g VirtualPythonEnv
       # If using Curaengine from Ultimaker source:
       conan install . --build=missing --update -o cura:devtools=True -g VirtualPythonEnv

Clone this wiki locally