Installation
Note
LUMA is not currently code-signed, so Windows and MacOS may warn you about running the application.
Easy install
Windows
The compiled installers are available in the release section:
luma_X.X.X_x64-setup.exeandluma_X.X.X_x64_en-US.msi- Installers that adds the tool to your path.
MacOS
A packaged universal app is available in the release section:
luma.pkg- Installer that adds the tools to your path.
Linux
LUMA is set up to build .rpm, .deb, and .appimage.
These will not automatically install to path and require some user setup to use in this way.
AppImage
Begin by making the AppImage an executable. You may want to change the name to make your life easier.
chmod +x luma.AppImageUser Install
Add to your local bin folder.
mkdir -p ~/.local/binmv luma.AppImage ~/.local/bin/LUMAAdd the directory to your PATH (if needed) Use nano or your preferred equivalent.
nano ~/.bashrcAnd add the following to your file
export PATH="$HOME/.local/bin:$PATH"source ~/.bashrcSystem Install
Move the file to your bin folder and check it is executable.
sudo mv luma.AppImage /usr/local/bin/LUMAsudo chmod +x /usr/local/bin/LUMARPM and DEB
These should not (I think? I do not use these formats) require extra setup to become available on PATH.
DEB (Debian, Ubuntu, etc.)
sudo apt update
sudo apt install ./luma.debRPM (Fedora, RHEL, CentOS, etc.)
sudo dnf install ./luma.rpmManual Build Commands
For users who want to build from source please refer to the Building From Source page for instructions on how to build LUMA from source code.