|
1 | | -# Khiops application |
| 1 | +# Cloud Storage Drivers for the Khiops Application |
2 | 2 |
|
3 | | -If you intend to use remote resources with the Khiops desktop application, you will have to install additionally the Khiops drivers. |
| 3 | +To use remote resources with the Khiops desktop application, install the additional Khiops cloud storage drivers. |
4 | 4 |
|
5 | | -They can be installed on the supported Linux distributions only |
| 5 | +These drivers are available only for the supported Linux distributions listed below. |
6 | 6 |
|
7 | 7 | !!! info "Supported Linux distributions" |
8 | 8 | - Rocky Linux 9 and 10 |
9 | 9 | - Debian 11, 12 and 13 |
10 | 10 | - Ubuntu 20.04, 22.04 and 24.04 (LTS) on x86-64 architectures |
11 | 11 | - Ubuntu 22.04 and 24.04 (LTS) on ARM architectures. |
12 | 12 |
|
13 | | -*Ubuntu / Debian* |
14 | | -```commandline |
15 | | - if [ -f /etc/os-release ]; then . /etc/os-release; fi && \ |
16 | | - wget -O khiops-gcs.deb https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/{{ KHIOPS_GCS_DRIVER_VERSION }}/khiops-driver-gcs_{{ KHIOPS_GCS_DRIVER_VERSION }}-1-${VERSION_CODENAME}.amd64.deb && \ |
17 | | - wget -O khiops-s3.deb https://github.com/KhiopsML/khiopsdriver-s3/releases/download/{{ KHIOPS_S3_DRIVER_VERSION }}/khiops-driver-s3_{{ KHIOPS_S3_DRIVER_VERSION }}-1-${VERSION_CODENAME}.amd64.deb && \ |
18 | | - wget -O khiops-azure.deb https://github.com/KhiopsML/khiopsdriver-azure/releases/download/{{ KHIOPS_AZURE_DRIVER_VERSION }}/khiops-driver-azure_{{ KHIOPS_AZURE_DRIVER_VERSION }}-1-${VERSION_CODENAME}.amd64.deb && \ |
19 | | - (sudo dpkg -i --force-all khiops-gcs.deb khiops-s3.deb khiops-azure.deb || true) && \ |
20 | | - sudo apt-get -f -y install && \ |
21 | | - rm -f khiops-gcs.deb khiops-s3.deb khiops-azure.deb |
22 | | -``` |
23 | | -*Rocky Linux* |
24 | | -```commandline |
25 | | - ROCKY_VERSION=$(rpm -E %{rhel}) && \ |
26 | | - wget -O khiops-gcs.rpm "https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/{{ KHIOPS_GCS_DRIVER_VERSION }}/khiops-driver-gcs_{{ KHIOPS_GCS_DRIVER_VERSION }}-1.el${ROCKY_VERSION}.x86_64.rpm" && \ |
27 | | - wget -O khiops-s3.rpm "https://github.com/KhiopsML/khiopsdriver-s3/releases/download/{{ KHIOPS_S3_DRIVER_VERSION }}/khiops-driver-s3_{{ KHIOPS_S3_DRIVER_VERSION }}-1.el${ROCKY_VERSION}.x86_64.rpm" && \ |
28 | | - wget -O khiops-azure.rpm "https://github.com/KhiopsML/khiopsdriver-azure/releases/download/{{ KHIOPS_AZURE_DRIVER_VERSION }}/khiops-driver-azure_{{ KHIOPS_AZURE_DRIVER_VERSION }}-1.el${ROCKY_VERSION}.x86_64.rpm" && \ |
29 | | - sudo yum install -y && \ |
30 | | - rm -f khiops-gcs.rpm khiops-s3.rpm khiops-azure.rpm |
31 | | -``` |
| 13 | +=== "Ubuntu / Debian" |
| 14 | + ```commandline |
| 15 | + if [ -f /etc/os-release ]; then . /etc/os-release; fi && \ |
| 16 | + wget -O khiops-gcs.deb https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/{{ KHIOPS_GCS_DRIVER_VERSION }}/khiops-driver-gcs_{{ KHIOPS_GCS_DRIVER_VERSION }}-1-${VERSION_CODENAME}.amd64.deb && \ |
| 17 | + wget -O khiops-s3.deb https://github.com/KhiopsML/khiopsdriver-s3/releases/download/{{ KHIOPS_S3_DRIVER_VERSION }}/khiops-driver-s3_{{ KHIOPS_S3_DRIVER_VERSION }}-1-${VERSION_CODENAME}.amd64.deb && \ |
| 18 | + wget -O khiops-azure.deb https://github.com/KhiopsML/khiopsdriver-azure/releases/download/{{ KHIOPS_AZURE_DRIVER_VERSION }}/khiops-driver-azure_{{ KHIOPS_AZURE_DRIVER_VERSION }}-1-${VERSION_CODENAME}.amd64.deb && \ |
| 19 | + (sudo dpkg -i --force-all khiops-gcs.deb khiops-s3.deb khiops-azure.deb || true) && \ |
| 20 | + sudo apt-get -f -y install && \ |
| 21 | + rm -f khiops-gcs.deb khiops-s3.deb khiops-azure.deb |
| 22 | + ``` |
| 23 | + |
| 24 | +=== "Rocky Linux" |
| 25 | + ```commandline |
| 26 | + ROCKY_VERSION=$(rpm -E %{rhel}) && \ |
| 27 | + wget -O khiops-gcs.rpm "https://github.com/KhiopsML/khiopsdriver-gcs/releases/download/{{ KHIOPS_GCS_DRIVER_VERSION }}/khiops-driver-gcs_{{ KHIOPS_GCS_DRIVER_VERSION }}-1.el${ROCKY_VERSION}.x86_64.rpm" && \ |
| 28 | + wget -O khiops-s3.rpm "https://github.com/KhiopsML/khiopsdriver-s3/releases/download/{{ KHIOPS_S3_DRIVER_VERSION }}/khiops-driver-s3_{{ KHIOPS_S3_DRIVER_VERSION }}-1.el${ROCKY_VERSION}.x86_64.rpm" && \ |
| 29 | + wget -O khiops-azure.rpm "https://github.com/KhiopsML/khiopsdriver-azure/releases/download/{{ KHIOPS_AZURE_DRIVER_VERSION }}/khiops-driver-azure_{{ KHIOPS_AZURE_DRIVER_VERSION }}-1.el${ROCKY_VERSION}.x86_64.rpm" && \ |
| 30 | + sudo yum install -y khiops-gcs.rpm khiops-s3.rpm khiops-azure.rpm && \ |
| 31 | + rm -f khiops-gcs.rpm khiops-s3.rpm khiops-azure.rpm |
| 32 | + ``` |
0 commit comments