install: fix bug in apt install target

This commit is contained in:
Peter F. Patel-Schneider 2025-07-08 11:05:16 -04:00
parent 3c11eff55a
commit abc5a31c15
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ install_macos: install_brew install_pip
install_apt: install_apt:
@echo "Installing Solaar dependencies via apt" @echo "Installing Solaar dependencies via apt"
sudo apt update sudo apt update
sudo apt install libdbus-1-dev libglib2.0-dev libgtk-3-dev libgirepository-1.0-dev sudo apt install libdbus-1-dev libglib2.0-dev libgtk-3-dev libgirepository1.0-dev
install_apt_python3.13: install_apt_python3.13:
@echo "Installing Solaar dependencies via apt" @echo "Installing Solaar dependencies via apt"

View File

@ -42,8 +42,8 @@ or `make install_dnf` or `make install_brew`.
These might not install all needed packages in older versions of your distribution. These might not install all needed packages in older versions of your distribution.
Next, install the Solaar rule via `make install_udev`. Next, install the Solaar rule via `make install_udev`.
If you are using Wayland instead of X11 you may want to instead `make install_udev_uinput` If you are using Wayland instead of X11 you may want to instead `make install_udev_uinput`
Finally, install Solaar via `make install_pip` or `make install_pipx`.
so that Solaar rules can simulate input in Wayland. so that Solaar rules can simulate input in Wayland.
Finally, install Solaar via `make install_pip` or `make install_pipx`.
Parts of the installation process require sudo privileges so you may be asked for your password. Parts of the installation process require sudo privileges so you may be asked for your password.