GNURadio: gr-adsb: Difference between revisions
From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs) No edit summary |
Onnowpurbo (talk | contribs) No edit summary |
||
| Line 14: | Line 14: | ||
cd gr-adsb/ | Download, Compile & Install | ||
cd /usr/local/src | |||
git clone https://github.com/mhostetter/gr-adsb.git | |||
cd /usr/local/src/gr-adsb/ | |||
mkdir build | mkdir build | ||
cd build/ | cd build/ | ||
Revision as of 03:14, 6 January 2020
Sumber: https://github.com/mhostetter/gr-adsb#webserver-dependencies
Instalasi Pendukung
Jika menggunakan built-in Google Maps webserver, kita perlu menginstalasi package Python berikut,
sudo su apt update apt -y install python-pip pip install flask pip install flask-socketio pip install gevent pip install gevent-websocket
Download, Compile & Install
cd /usr/local/src git clone https://github.com/mhostetter/gr-adsb.git cd /usr/local/src/gr-adsb/ mkdir build cd build/ cmake ../ # or cmake -DCMAKE_INSTALL_PREFIX=<path_to_install> ../ make sudo make install sudo ldconfig
Webserver Dependencies
If using the built-in Google Maps webserver, you'll need to install the following Python packages.
sudo pip install flask sudo pip install flask-socketio sudo pip install gevent sudo pip install gevent-websocket