khiops
khiops copied to clipboard
Publish Linux packages on an public repository
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
A brand new PPA for Khiops here