blob: 70978839ada6a6b61f12fdc8bd093c6a6aaa3154 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|