mirror of
https://github.com/commaai/rednose.git
synced 2026-06-09 14:34:34 +08:00
13 lines
249 B
Bash
Executable File
13 lines
249 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ ! $(id -u) -eq 0 ]]; then
|
|
if [[ -z $(which sudo) ]]; then
|
|
echo "Please install sudo or run as root"
|
|
exit 1
|
|
fi
|
|
SUDO="sudo"
|
|
fi
|
|
|
|
$SUDO apt-get update
|
|
$SUDO apt-get install -y --no-install-recommends clang libeigen3-dev
|