14 lines
223 B
Bash
14 lines
223 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ "$EUID" -ne 0 ]; then
|
||
|
echo "Este script requiere permisos de root."
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
|
||
|
apt update
|
||
|
apt install -y python3-pip
|
||
|
|
||
|
pip3 install setuptools gunicorn
|
||
|
pip3 install -r web-interface/requirements.txt
|