23 lines
344 B
Bash
23 lines
344 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# Install tools, utilities, and etc.
|
|
|
|
apt-get update
|
|
apt-get install -y --no-install-recommends \
|
|
curl \
|
|
git-lfs \
|
|
ninja-build \
|
|
psmisc \
|
|
python3-pip \
|
|
software-properties-common \
|
|
unzip \
|
|
usbutils \
|
|
vim \
|
|
wget \
|
|
net-tools \
|
|
iputils-ping
|
|
|
|
pip3 install \
|
|
cmakelang==0.6.13 |