Skip to content

Cloud Storage Drivers for the Khiops Application

To use remote resources with the Khiops desktop application, install the additional Khiops cloud storage drivers.

These drivers are available only for the supported Linux distributions listed below.

Supported Linux distributions

  • Rocky Linux 9 and 10
  • Debian 11, 12 and 13
  • Ubuntu 20.04, 22.04 and 24.04 (LTS) on x86-64 architectures
  • Ubuntu 22.04 and 24.04 (LTS) on ARM architectures.
    if [ -f /etc/os-release ]; then . /etc/os-release; fi && \
    wget -O khiops-gcs.deb https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/0.0.23/khiops-driver-gcs_0.0.23-1-${VERSION_CODENAME}.amd64.deb && \
    wget -O khiops-s3.deb https://github.com/KhiopsML/khiopsdriver-s3/releases/download/0.0.25/khiops-driver-s3_0.0.25-1-${VERSION_CODENAME}.amd64.deb && \
    wget -O khiops-azure.deb https://github.com/KhiopsML/khiopsdriver-azure/releases/download/0.0.18/khiops-driver-azure_0.0.18-1-${VERSION_CODENAME}.amd64.deb && \
    (sudo dpkg -i --force-all khiops-gcs.deb khiops-s3.deb khiops-azure.deb || true) && \
    sudo apt-get -f -y install && \
    rm -f khiops-gcs.deb khiops-s3.deb khiops-azure.deb
    ROCKY_VERSION=$(rpm -E %{rhel}) && \
    wget -O khiops-gcs.rpm "https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/0.0.23/khiops-driver-gcs_0.0.23-1.el${ROCKY_VERSION}.x86_64.rpm" && \
    wget -O khiops-s3.rpm "https://github.com/KhiopsML/khiopsdriver-s3/releases/download/0.0.25/khiops-driver-s3_0.0.25-1.el${ROCKY_VERSION}.x86_64.rpm" && \
    wget -O khiops-azure.rpm "https://github.com/KhiopsML/khiopsdriver-azure/releases/download/0.0.18/khiops-driver-azure_0.0.18-1.el${ROCKY_VERSION}.x86_64.rpm" && \
    sudo yum install -y khiops-gcs.rpm khiops-s3.rpm khiops-azure.rpm && \
    rm -f khiops-gcs.rpm khiops-s3.rpm khiops-azure.rpm