Difference between revisions of "GNURadio: gr-adsb"
Jump to navigation
Jump to search
Onnowpurbo (talk | contribs) |
Onnowpurbo (talk | contribs) |
||
Line 1: | Line 1: | ||
Sumber: https://github.com/mhostetter/gr-adsb#webserver-dependencies | Sumber: https://github.com/mhostetter/gr-adsb#webserver-dependencies | ||
+ | |||
+ | ==Instalasi Pendukung== | ||
+ | |||
+ | If using the built-in Google Maps webserver, you'll need to install the following Python packages. | ||
+ | |||
+ | sudo su | ||
+ | apt update | ||
+ | apt install pip | ||
+ | pip install flask | ||
+ | pip install flask-socketio | ||
+ | pip install gevent | ||
+ | pip install gevent-websocket | ||
+ | |||
cd gr-adsb/ | cd gr-adsb/ |
Revision as of 10:02, 6 January 2020
Sumber: https://github.com/mhostetter/gr-adsb#webserver-dependencies
Instalasi Pendukung
If using the built-in Google Maps webserver, you'll need to install the following Python packages.
sudo su apt update apt install pip pip install flask pip install flask-socketio pip install gevent pip install gevent-websocket
cd 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