Skip to content
bruno edited this page Jul 23, 2025 · 6 revisions

Welcome to the Khiops development wiki! This wiki is dedicated for the developers documentation.

For the user documentation go to http://khiops.org.

Quick build and run

If you can't find the packages for your operating system in the releases, you can build Khiops from scratch. You will need a C++ compiler, CMake, a JDK, and MPI. See this page for more information.

  1. Clone the Khiops repository and switch to a tag

Caution

It is safer to switch to a tag that corresponds to the latest release. This ensures that you are not using an unstable branch.

  1. Build Khiops with CMake:
    cd khiops
    cmake --fresh -S . -B build -D TESTING=OFF -D BUILD_JARS=ON -D CMAKE_BUILD_TYPE=Release
    cmake --build build/ --parallel 
  2. Build the packages with CPack (optional, for Linux only):
    cd build
    # Use DEB or RPM generator
    cpack -G DEB 
Clone this wiki locally