esp32_bluetooth_classic_sni.../requirements.sh
Matheus Eduardo Garbelini 16b5449e3d tiny fix
2021-09-07 12:13:53 +08:00

12 lines
360 B
Bash
Executable file

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