-
Notifications
You must be signed in to change notification settings - Fork 0
/
requirements_install.sh
47 lines (40 loc) · 1.21 KB
/
requirements_install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/bin/bash
# Detectar la distribución de Linux
if [ -f /etc/os-release ]; then
source /etc/os-release
DISTRO=$ID
elif [ -f /etc/lsb-release ]; then
DISTRO=$(lsb_release -si)
else
DISTRO="Unknown"
fi
# Verificar si Python está instalado
python --version > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "Python ya está instalado en tu sistema."
else
echo "Python no está instalado en tu sistema."
# Instalar Python según la distribución
case $DISTRO in
"ubuntu" | "debian")
echo "Puedes instalar Python en Ubuntu/Debian con: sudo apt-get install python"
;;
"fedora")
echo "Puedes instalar Python en Fedora con: sudo dnf install python"
;;
"centos" | "rhel")
echo "Puedes instalar Python en CentOS/RHEL con: sudo yum install python"
;;
*)
echo "No se pudo determinar cómo instalar Python en tu sistema. Por favor, instálalo manualmente."
;;
esac
exit 1
fi
# Instalar dependencias
echo "Instalando las dependencias..."
pip install -r requirements.txt
# Limpiar la pantalla
clear
# Mostrar instrucciones finales
echo "Ahora ejecuta 'run.sh' para iniciar el Selfbot."