diff options
author | Carl <Kraken.rf.inc@gmail.com> | 2021-12-23 03:10:19 +0100 |
---|---|---|
committer | Carl <Kraken.rf.inc@gmail.com> | 2021-12-23 03:10:19 +0100 |
commit | efaaf39f79d81cd740a9f741e6cf4815c49c3093 (patch) | |
tree | 5a4fb7caaddef5f228f6833260ba7e7b44345051 /util/setup_init.sh | |
parent | Initial commit (diff) | |
download | krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.tar krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.tar.gz krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.tar.bz2 krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.tar.lz krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.tar.xz krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.tar.zst krakensdr_pr-efaaf39f79d81cd740a9f741e6cf4815c49c3093.zip |
Diffstat (limited to '')
-rwxr-xr-x | util/setup_init.sh | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/util/setup_init.sh b/util/setup_init.sh new file mode 100755 index 0000000..7097883 --- /dev/null +++ b/util/setup_init.sh @@ -0,0 +1,18 @@ +#/bin/bash! + +# PhP for android device support +sudo apt install php7.4-cli + +echo "Set execution rights" +sudo chmod +x ../gui_run.sh +sudo chmod +x ../kill.sh +echo "Install dependencies" +python3 -m pip install numpy +python3 -m pip install scipy +python3 -m pip install pyargus +python3 -m pip install matplotlib + +# For web interface +python3 -m pip install dash +python3 -m pip install dash-bootstrap-components +python3 -m pip install gunicorn
\ No newline at end of file |