14 lines
351 B
Bash
14 lines
351 B
Bash
echo "Configure box for simulator"
|
|
|
|
apt-get update
|
|
apt-get -qq update
|
|
apt-get install -y build-essential
|
|
apt-get install -y curl
|
|
apt-get install -y python-minimal
|
|
curl -sL https://deb.nodesource.com/setup_8.x | bash
|
|
apt-get install -y nodejs
|
|
sudo apt install -y alsa-utils
|
|
sudo apt-get install -y libasound2-dev
|
|
sudo npm i -g node-gyp
|
|
|
|
mkdir simulator |