khiops icon indicating copy to clipboard operation
khiops copied to clipboard

Publish Linux packages on an public repository

Open lucaurelien opened this issue 11 months ago • 1 comments

To improve the user experience (UX) for installing Khiops, we aim to publish Khiops packages on a public repository. This will simplify the installation process by removing the need for multi-step commands.

For instance, current users on Ubuntu need to execute all these commands:

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.4/khiops-core-openmpi_10.2.4-1-${CODENAME}.amd64.deb" && \
wget -O "$TEMP_DEB_KHIOPS" "https://github.com/KhiopsML/khiops/releases/download/10.2.4/khiops_10.2.4-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

The goal is to allow a single-line command, such as: sudo apt-get install khiops

lucaurelien avatar Jan 16 '25 15:01 lucaurelien

A brand new PPA for Khiops here

bruno-at-orange avatar Jul 29 '25 14:07 bruno-at-orange