I am attempting to install 3rd party open source razor drivers from: https://github.com/terrycain/razer-drivers.
sudo add-apt-repository ppa:terrz/razerutils
sudo apt update
sudo apt install python3-razer razer-kernel-modules-dkms razer-daemon razer-doc
However the last command fails with the error:
The following packages have unmet dependencies: razer-daemon : Depends: python3-setproctitle but it is not installable E: Unable to correct problems, you have held broken packages.
I have attempted to install the dependency manually via pip with the following commands:
sudo apt-get install python3-pip
sudo pip3 install setproctitle
The installation is fine, I am testing it like so:
from setproctitle import setproctitle
from os import getpid, system
setproctitle('this-is-a-test')
system("ps -o cmd= {}".format(getpid())
python3 test.py
it prints
this-is-a-test
However the command sudo apt install python3-razer razer-kernel-modules-dkms razer-daemon razer-doc
still fails with the same error message.
How might I get around this issue?