From 7a57fb142d3cac395bb47ef05bce0d0fc0e8e40a Mon Sep 17 00:00:00 2001 From: Whispering Wind <151555003+ReturnFI@users.noreply.github.com> Date: Wed, 14 Aug 2024 09:45:04 +0330 Subject: [PATCH] Remove requirements --- core/scripts/singbox/singbox_shell.sh | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/core/scripts/singbox/singbox_shell.sh b/core/scripts/singbox/singbox_shell.sh index 3a066d9..d1bf23d 100644 --- a/core/scripts/singbox/singbox_shell.sh +++ b/core/scripts/singbox/singbox_shell.sh @@ -10,18 +10,6 @@ install_dependencies() { exit 1 fi echo -e "${green}Certbot installed successfully. ${NC}" - - if [ -f /etc/hysteria/requirements.txt ]; then - pip install -r /etc/hysteria/requirements.txt > /dev/null 2>&1 - if [ $? -ne 0 ]; then - echo -e "${red}Error: Failed to install Python dependencies. ${NC}" - exit 1 - fi - echo -e "${green}Python dependencies installed successfully. ${NC}" - else - echo -e "${red}Error: /etc/hysteria/requirements.txt not found. ${NC}" - exit 1 - fi } update_env_file() {