You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: run.sh
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,14 @@ function testDeps() {
66
66
echo -e "${Red}python3-gi-cairo not found, install it. ${Yellow}The package may be named python3-gobject or python-gobject on your distribution!${NoColor}"
67
67
exit 1
68
68
fi
69
+
if! python -c "import importlib.util; exit(0 if importlib.util.find_spec('ioctl_opt') is not None else 1)";then
70
+
echo -e "${Red}python3-ioctl-opt not found, install it. ${Yellow}The package may be named or python-ioctl-opt on your distribution, ioctl-opt on PyPi!${NoColor}"
71
+
exit 1
72
+
fi
73
+
if! python -c "import importlib.util; exit(0 if importlib.util.find_spec('evdev') is not None else 1)";then
74
+
echo -e "${Red}python3-evdev not found, install it. ${Yellow}The package may be named or python-evdev on your distribution!${NoColor}"
0 commit comments