-
-
Notifications
You must be signed in to change notification settings - Fork 2
01 ‐ Installation
Florian Thienel edited this page Jul 21, 2026
·
2 revisions
- Download the AppImage file from the latest release.
- Make the AppImage file executable.
- Start Hello Contest by launching the AppImage file.
VERSION=$(curl -sI https://github.com/ftl/hellocontest/releases/latest | grep -i location | grep -oP 'v\K[0-9a-zA-Z.-]+')
wget https://github.com/ftl/hellocontest/releases/latest/download/v${VERSION}/hellocontest_${VERSION}-x86_64.AppImage
chmod a+x hellocontest-${VERSION}-x86_64.AppImage
hellocontest-${VERSION}-x86_64.AppImage versionOn Ubuntu starting from version 22.04 you need to install libfuse2 in order to run AppImages: sudo apt-get install libfuse2
For more information about AppImage see appimage.org.
- Download the Debian package from latest release.
- Install the package unsing apt-get
- Start hellocontest in the terminal.
VERSION=$(curl -sI https://github.com/ftl/hellocontest/releases/latest | grep -i location | grep -oP 'v\K[0-9a-zA-Z.-]+')
wget https://github.com/ftl/hellocontest/releases/latest/download/v${VERSION}/hellocontest_${VERSION}_amd64.deb
sudo dpkg -i hellocontest_${VERSION}_amd64.deb
hellocontest- Clone the AUR package hellocontest:
git clone https://aur.archlinux.org/packages/hellocontest - Install the package using makepkg:
makepkg -i hellocontest - Start Hello Contest, either in the terminal (simply type
hellocontest) or by using the application launcher of your choice.
- Clone the Github repository:
git clone https://github.com/ftl/hellocontest.git - Enter the project directory:
cd hellocontest - Build the source code:
make - Install Hello Contest:
sudo make install update_icons - Start Hello Contest, either in the terminal (simply type
hellocontest) or by using the application launcher of your choice.