Skip to content

Installation Options

Khiops supports a diversified set of installation options, to meet different needs:

  • Khiops Python Library:
  • Khiops Application: for advanced data analytics with just a few clicks using a graphical user interface. This application is also the basis for easy integration into different systems (all programming languages, docker, servers, etc.).
  • Khiops Visualization Application: for intuitive visualization of all analysis results
  • Khiops Native Interface (KNI): to deploy Khiops models with a lightweight shared library.


Refer to the following table to select the appropriate installation method for your operating system.
We support Python from 3.8 to 3.12.

OS Conda Binary + pip Khiops-notebook Desktop app KNI
Windows 10 and later ✅ ✅ ✅ ✅ ✅
macOS 10 and later ✅ ✅ ✅
Ubuntu 20 and 22 (LTS) ✅ ✅ ✅ ✅ ✅
Debian 10 ✅ ✅ ✅ ✅ ✅
Debian 11 and 12 ✅ ✅ ✅
Rocky Linux 8 and 9 ✅ ✅ ✅ ✅

The Kaggle Notebooks and Google Colaboratory environments are supported. To benefit from Khiops on these environments, users are encouraged to install the Khiops Conda package, which has been tested in these environments.

For other platforms, please Contact Us.


Install the Khiops Python Library Using Conda Recommended

The Conda package contains all the necessary components.

conda install -c conda-forge -c khiops khiops
conda install -c khiops khiops
conda install -c conda-forge -c khiops khiops

We support Python from 3.8 to 3.12. If you are using a different version of Python in your current environment, we recommend visiting our Conda Installation Page for instructions on creating a new environment tailored for Khiops:

See the Conda Installation Page


Run Khiops with Jupyter Docker Stacks

For a quick and easy way to get started with Khiops, you can use our Docker container.

docker pull khiopsml/khiops-notebook

See the Docker notebooks Installation Page


Install the Khiops Application

This version contains a standalone Graphical User Interface (GUI).

The Khiops installer automatically installs the Khiops application, all its dependencies, plus the Khiops samples and the Khiops Visualization application:

CODENAME=$(lsb_release -cs) && \
TEMP_DEB_CORE="$(mktemp)" && \
TEMP_DEB_KHIOPS="$(mktemp)" && \
wget -O "$TEMP_DEB_CORE" "https://github.com/KhiopsML/khiops/releases/download/10.2.0/khiops-core_10.2.0-1-${CODENAME}.amd64.deb" && \
wget -O "$TEMP_DEB_KHIOPS" "https://github.com/KhiopsML/khiops/releases/download/10.2.0/khiops_10.2.0-1-${CODENAME}.amd64.deb" && \
sudo dpkg -i "$TEMP_DEB_CORE" "$TEMP_DEB_KHIOPS" || sudo apt-get -f -y install && \
rm -f $TEMP_DEB_CORE $TEMP_DEB_KHIOPS

Currently, our packages are released on GitHub. In the coming weeks, we will transition to official repositories.

See the Khiops Desktop Installation Page


Install the Khiops Visualization Applications

See the Khiops Visualization Page Try our Interactive Demo


Install the Khiops Python library using Pip 🛠 For Advanced users 🛠

Using pip for installation is best suited for experienced users, especially those integrating Khiops into specific environments or requiring advanced configuration. This method offers flexibility, but requires familiarity with operating systems specifics, Python-based environments and dependency management.

See the Pip Installation Page