esp32_bluetooth_classic_sni.../requirements.sh
2022-03-25 11:34:38 +08:00

12 lines
394 B
Bash
Executable file

#!/usr/bin/env bash
echo -e "\nInstalling libc6, cmake, clang, zstd and software-properties-common"
sudo apt install libc6 cmake clang zstd pkg-config 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 wireshark-dev -y
echo "Done! Run build.sh to build project"