esp32_bluetooth_classic_sni.../requirements.sh
Matheus Eduardo Garbelini c1fc3f84e3 Step 1 Update
2021-09-06 09:45:23 +08:00

12 lines
No EOL
333 B
Bash
Executable file

#!/usr/bin/env bash
echo -e "\nInstalling cmake and software-properties-common"
sudo apt install cmake software-properties-common -y
echo -e "\n\nInstalling latest stable wireshark"
sudo add-apt-repository --yes ppa:wireshark-dev/stable
sudo apt-get update
sudo apt install wireshark -y
echo "Done! Run build.sh to build project"