This has been tested on Fedora 36, 37.
sudo dnf install python3-pip python3-devel hidapi
You need to upgrade pip, using pip. In my experience, old versions of pip may fail to properly install some of the required Python dependencies.
python -m pip install --upgrade pip
The following will create a file called /etc/udev/rules.d/70-streamdeck.rules
and add the following text to it: SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", TAG+="uaccess"
. Creating this file adds a udev rule that provides your user with access to USB devices created by Elgato.
sudo sh -c 'echo "SUBSYSTEM==\"usb\", ATTRS{idVendor}==\"0fd9\", TAG+=\"uaccess\"" > /etc/udev/rules.d/70-streamdeck.rules'
sudo sh -c 'echo "KERNEL==\"uinput\", SUBSYSTE==\misc\, TAG+=\"uaccess\"" >> /etc/udev/rules.d/70-streamdeck.rules'
For the rule to take immediate effect, run the following command:
sudo udevadm trigger
If the software is having problems later to detect the Stream Deck, you can try unplugging/plugging it back in.
python -m pip install streamdeck-linux-gui --user
Please make sure you have followed the steps below untill the Install Stream Deck UI section before continuing.
The steps to install from source can be found here
Launch with
streamdeck
See system tray installation.
See troubleshooting for tips if you're stuck.