python beacon

Solutions on MaxInterview for python beacon by the best coders in the world

showing results for - "python beacon"
Nino
07 Jun 2019
1# install libbluetooth headers and libpcap2
2sudo apt-get install python3-dev libbluetooth-dev libcap2-bin
3# grant the python executable permission to access raw socket data
4sudo setcap 'cap_net_raw,cap_net_admin+eip' "$(readlink -f "$(which python3)")"
5# install beacontools with scanning support
6pip3 install beacontools[scan]
7