we write it ourselves

This commit is contained in:
Adeeb Shihadeh
2026-07-31 11:39:17 -07:00
parent d4e29ec945
commit b72f6e9f7d
2 changed files with 11 additions and 1 deletions
+6
View File
@@ -8,6 +8,12 @@ authors = [
{name = "Vehicle Researcher", email="user@comma.ai"}
]
# ------------------------------------------
# > this dependencies list *only* goes down.
# ------------------------------------------
# Linux and Python is all we need, otherwise
# we write and own the lines ourselves.
# ------------------------------------------
dependencies = [
# multiple users
"sounddevice", # micd + soundd
+5 -1
View File
@@ -38,7 +38,11 @@ function install_linux_deps() {
fi
done
# normal stuff, this mostly for bare docker images
# ------------------------------------------------
# dependencies should never be added to this list.
# these are only for inflating bare docker images
# to their desktop equivalents.
# ------------------------------------------------
if [[ "$missing_linux_deps" -eq 0 ]]; then
# the native package managers are slow, so skip if we can
echo "[ ] system packages already installed t=$SECONDS"