Skip to content

Commit 1f823f4

Browse files
authored
New release 11.0.1 with new welcome page
* Changes on remote-files setup Update mkdocs.yml * New Welcome Page New Welcome Page Update home page content update copyright New design from RT updates adding versionning to css avoiding caching issues new punchline Update home-refonte.css small design fixes updates new title feedbacks updates Change button for Download the nocode app Update home.html * Update environment.env Updating versions for new release * New Welcome Page New Welcome Page Update home page content update copyright New design from RT updates adding versionning to css avoiding caching issues new punchline Update home-refonte.css small design fixes updates new title feedbacks updates Change button for Download the nocode app Update home.html * Update environment.env Updating versions for new release * Changes on remote-files setup Update mkdocs.yml * removing obsolete conda warning * typo about visualization tool
1 parent 3bff19c commit 1f823f4

24 files changed

Lines changed: 975 additions & 1110 deletions

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
docs/advanced/Notebooks/logs.log
99
docs/tutorials/Notebooks/st_results
1010
docs/tutorials/Notebooks/mt_results
11+
site/*
1112
.cache
1213
# Python
1314
__pycache__

docs/setup/conda.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Once the environment is activated, **you can install Khiops as follow**:
2626
conda install -c conda-forge khiops={{ CONDA_KHIOPS_PYTHON_VERSION }}
2727
```
2828

29-
If you intend to use remote resources while working with the Khiops Library you will have to install additional dependencies ([**vendors SDK and Khiops drivers**](../drivers-and-vendors-python-sdk)).
29+
If you intend to use remote resources while working with the Khiops Library you will have to install additional dependencies ([**vendors-specific SDK and Khiops drivers**](drivers-and-sdk-for-library.md)).
3030

3131
<br>
3232

@@ -81,15 +81,6 @@ You can consult the limitations or known problems corresponding to your operatin
8181
sudo $FW --block $(which MODL)
8282
```
8383

84-
!!! warning
85-
86-
The installation of Khiops will utilize MPICH version 3.4.3 due to compatibility issues.
87-
This is why you need to use a dedicated command:
88-
``` sh
89-
conda install -c conda-forge -c khiops khiops
90-
```
91-
92-
Be aware that this may result in **slower execution times** compared to other platforms. This limitation is expected to be addressed in a future MPICH release.
9384

9485
=== "Users on :material-microsoft-windows: Windows"
9586
??? tip "Important Note for users upgrading from the previous pyKhiops package (up to 10.1)"
Lines changed: 23 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,32 @@
1-
# Khiops application
1+
# Cloud Storage Drivers for the Khiops Application
22

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.
44

5-
They can be installed on the supported Linux distributions only
5+
These drivers are available only for the supported Linux distributions listed below.
66

77
!!! info "Supported Linux distributions"
88
- Rocky Linux 9 and 10
99
- Debian 11, 12 and 13
1010
- Ubuntu 20.04, 22.04 and 24.04 (LTS) on x86-64 architectures
1111
- Ubuntu 22.04 and 24.04 (LTS) on ARM architectures.
1212

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+
```

docs/setup/drivers-and-sdk-for-library.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
1-
# Cloud-ready Khiops Python library
1+
# Cloud Storage Drivers for Khiops Python
22

3-
The Khiops library can read and write remote files for the following storage types : **AWS S3, Google Cloud Storage (GCS) and Microsoft Azure**, after the installation of a few prerequisites.
3+
The Khiops Python library can read and write remote files from the following storage services after a few prerequisites are installed: **AWS S3, Google Cloud Storage (GCS), and Microsoft Azure**.
44

55
=== "Pip packages"
66

7-
The installation of all the prerequisites can be done in one step during the [**Pip installation**](../pip) of the Khiops Python library.
7+
All prerequisites can be installed in one step during the [**Pip installation**](pip.md) of the Khiops Python library.
88

99
```commandline
10-
# In a dedicated virtual environment (recommended)
11-
pip install khiops[s3] # for a specific storage type only
12-
pip install khiops[s3,gcs,azure] # for all the supported storage types
10+
# In a dedicated virtual environment (recommended)
11+
pip install khiops[s3] # for a specific storage service only
12+
pip install khiops[s3,gcs,azure] # for all supported storage services
1313
```
1414

1515
=== "Conda packages"
1616

17-
If you intend to use remote resources while working with the Khiops Library under Conda, you will have to install the vendor-specific Python SDK(s) and the Khiops driver(s).
17+
To use remote resources with the Khiops Python library under Conda, install the vendor-specific Python SDKs and the corresponding Khiops drivers.
1818

1919
For AWS S3
2020
```commandline

docs/setup/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Khiops supports a diversified set of installation options, to meet different nee
1919
- [**Khiops Visualization**][vis]: for intuitive visualization of all analysis results (**interactive demo available [here][demo-vis]**)
2020
- [**Khiops Native Interface (KNI)**][kni]: to deploy Khiops models with a lightweight shared library.
2121
- **Cloud storage drivers**
22-
- [**Cloud-ready Khiops Python library**](drivers-and-sdk-for-library)
23-
- [**Khiops application**](drivers-and-sdk-for-application)
22+
- [**Cloud-ready Khiops Python library**](drivers-and-sdk-for-library.md)
23+
- [**Khiops application**](drivers-and-sdk-for-application.md)
2424

2525
!!! warning "Supported Platforms"
2626
We support :simple-python: **Python from 3.10 to 3.14** on the following operating systems:

docs/setup/nocode.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,9 @@ For further details, refer to [README][readme] and [WHATSNEW][whatsnew].
1616
=== "Windows"
1717
The :material-microsoft-windows: Khiops installer automatically installs the Khiops application, all its dependencies, plus some data samples formatted as expected by Khiops, and the Khiops Visualization application.
1818

19-
<a href="https://github.com/KhiopsML/khiops/releases/download/{{ KHIOPS_VERSION }}/khiops-{{ KHIOPS_VERSION }}-setup.exe">
20-
<button class="btn btn-light btn-sm">
21-
Download for Windows
22-
</button>
23-
</a>
19+
This new application replaces both the previous Khiops Visualization and Covisualization applications. **We recommend uninstalling them before proceeding with the installation.**
20+
21+
[:material-download: Download for Windows]("https://github.com/KhiopsML/khiops/releases/download/{{ KHIOPS_VERSION }}/khiops-{{ KHIOPS_VERSION }}-setup.exe"){ .md-button .md-button--primary }
2422

2523
=== "Ubuntu / Debian (ARM and x86)"
2624
Installing the Khiops desktop application involves two packages:

docs/setup/pip.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ versions of Python can be attempted, but there is no support for it.
3030
pip install khiops=={{ PIP_KHIOPS_PYTHON_VERSION }}
3131
```
3232

33-
If you intend to use remote resources while working with the Khiops Library you will have to install additional dependencies ([**vendors SDK and Khiops drivers**](../drivers-and-vendors-python-sdk)).
33+
If you intend to use remote resources while working with the Khiops Library you will have to install additional dependencies ([**vendors-specific SDK and Khiops drivers**](drivers-and-sdk-for-library.md)).
3434

3535
This can be performed, still in a dedicated virtual environment as recommended, by specifying the type of remote storage (`s3`, `gcs` or `azure`) in square brackets.
3636

docs/tutorials/storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ By using Khiops dedicated cloud storage drivers, you can process large-scale dat
66

77
With these drivers, Khiops treats cloud storage **just like a local filesystem**, meaning that all Khiops commands and workflows remain unchanged—only the dataset paths need to be adjusted.
88

9-
Refer to the [Cloud-ready Khiops Python library installation section](../../setup/drivers-and-sdk-for-library) or [Cloud-ready Khiops application section](../../setup/drivers-and-sdk-for-application) if needed. The current section documents the usage of the remote file storage facilities.
9+
Refer to the [Cloud-ready Khiops Python library installation section](../setup/drivers-and-sdk-for-library.md) or [Cloud-ready Khiops application section](../setup/drivers-and-sdk-for-application.md) if needed. The current section documents the usage of the remote file storage facilities.
1010

1111
## Using Khiops with Google Cloud Storage (GCS)
1212

environment.env

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
# Notes:
33
# - KHIOPS_DOC current reference is the commit the workflow is launched from
44
# - if KHIOPS_VIZ_VERSION is empty, the version ot the latest release is used
5-
KHIOPS_VERSION=11.0.0
6-
KHIOPS_PYTHON_VERSION=11.0.0.3
5+
KHIOPS_VERSION=11.0.1
6+
KHIOPS_PYTHON_VERSION=11.0.1.0
77
# KHIOPS_VIZ_VERSION=11.7.0 # Uncomment and update in case of documented regression in the latest release
88
KHIOPS_SAMPLES_VERSION=11.0.0
99
KHIOPS_GCS_DRIVER_VERSION=0.0.23
@@ -17,5 +17,5 @@ KHIOPS_PYTHON_OTHER_VERSION=10.3.2.1
1717
KHIOPS_SAMPLES_OTHER_VERSION=10.2.4
1818
KHIOPS_VIZ_OTHER_VERSION=11.3.1
1919
KHIOPS_COVIZ_OTHER_VERSION=11.5.2
20-
KHIOPS_GCS_DRIVER_OTHER_VERSION=0.0.15
21-
KHIOPS_S3_DRIVER_OTHER_VERSION=0.0.15
20+
KHIOPS_GCS_DRIVER_OTHER_VERSION=0.0.23
21+
KHIOPS_S3_DRIVER_OTHER_VERSION=0.0.25

mkdocs.yml

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@ repo_name: KhiopsML/Khiops
66
repo_url: https://github.com/KhiopsML/khiops
77

88
# Copyright
9-
copyright: Copyright &copy; 2023-2025 Orange S.A.
9+
copyright: Copyright &copy; 2023-2026 Orange S.A.
1010

1111
theme:
1212
name: material
13-
logo: assets/images/Small_Logo_RGB.png
13+
logo: assets/images/khiops-logo.png
1414
icon:
1515
repo: fontawesome/brands/github
1616
palette:
1717
primary: black
18-
favicon: assets/images/Small_Logo_RGB.png
18+
favicon: assets/images/khiops-logo.png
1919
custom_dir: overrides
20-
font: false
20+
font:
21+
text: Inter
22+
code: Roboto Mono
2123
features:
2224
- navigation.tabs
2325
- navigation.path
@@ -55,9 +57,9 @@ markdown_extensions:
5557
- footnotes
5658

5759
extra:
58-
KHIOPS_VERSION: !ENV [KHIOPS_VERSION, 11.0.0]
60+
KHIOPS_VERSION: !ENV [KHIOPS_VERSION, 11.0.1]
5961
KHIOPS_OTHER_VERSION: !ENV KHIOPS_OTHER_VERSION
60-
KHIOPS_PYTHON_VERSION: !ENV [KHIOPS_PYTHON_VERSION, 11.0.0.3]
62+
KHIOPS_PYTHON_VERSION: !ENV [KHIOPS_PYTHON_VERSION, 11.0.1.0]
6163
KHIOPS_SAMPLES_VERSION: !ENV [KHIOPS_SAMPLES_VERSION, 11.0.0]
6264
KHIOPS_VIZ_VERSION: !ENV [KHIOPS_VIZ_VERSION, 11.3.1]
6365
KHIOPS_GCS_DRIVER_VERSION: !ENV [KHIOPS_GCS_DRIVER_VERSION, 0.0.23]
@@ -92,11 +94,8 @@ extra:
9294
Thanks for your feedback! Help us improve this page by
9395
using our <a href="https://msurvey.orange.com/khiopsdoc" target="_blank" rel="noopener">feedback form</a>.
9496
95-
# Add extra Orange css
97+
9698
extra_css:
97-
- assets/stylesheets/orange-helvetica.min.css
98-
- assets/stylesheets/boosted.min.css
99-
- assets/stylesheets/orange.css
10099
- assets/stylesheets/main.css
101100

102101
# Add JS for Material plugins
@@ -127,9 +126,9 @@ nav:
127126
- Khiops Native Interface (KNI): setup/kni.md
128127
# anchors to sections are currently unusable in strict mode because of https://github.com/mkdocs/mkdocs/issues/4026
129128
# and linking to the same page breaks the TOC
130-
- Cloud storage drivers:
131-
- Cloud-ready Khiops Python library: setup/drivers-and-sdk-for-library.md
132-
- Khiops application: setup/drivers-and-sdk-for-application.md
129+
- Cloud Storage Drivers:
130+
- For the Python Library: setup/drivers-and-sdk-for-library.md
131+
- For the Khiops Application: setup/drivers-and-sdk-for-application.md
133132
- How to:
134133
- tutorials/introduction.md
135134
- Scikit-learn API:

0 commit comments

Comments
 (0)