remove Python dependencies since we don't need them anymore

This commit is contained in:
Late Night Defender 2024-05-16 14:42:38 +07:00
parent 7e30f9e416
commit 0c0a50203f

View file

@ -6,28 +6,28 @@ import(
)
func instDepsUbuntu() {
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Ubuntu repo\033[0m\n")
ExecSystem("/usr/bin/apt install -y python3-pymongo python3-psutil openssl")
fmt.Printf("\033[1;32mInstalling OpenSSL from Ubuntu repo\033[0m\n")
ExecSystem("/usr/bin/apt install -y openssl")
}
func instDepsDebian() {
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Debian repo\033[0m\n")
ExecSystem("/usr/bin/apt install -y python3-pymongo python3-psutil openssl")
fmt.Printf("\033[1;32mInstalling OpenSSL from Debian repo\033[0m\n")
ExecSystem("/usr/bin/apt install -y openssl")
}
func instDepsFedora() {
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Fedora repo\033[0m\n")
ExecSystem("/usr/bin/dnf install -y python3-pymongo python3-psutil openssl")
fmt.Printf("\033[1;32mInstalling OpenSSL from Fedora repo\033[0m\n")
ExecSystem("/usr/bin/dnf install -y openssl")
}
func instDepsRedHat() {
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL\033[0m\n")
ExecSystem("/usr/bin/dnf install -y python3-pymongo python3-psutil openssl")
fmt.Printf("\033[1;32mInstalling OpenSSL\033[0m\n")
ExecSystem("/usr/bin/dnf install -y openssl")
}
func instDepsOpenSUSE() {
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL\033[0m\n")
ExecSystem("/usr/bin/zypper install -y python3-pymongo python3-psutil openssl")
fmt.Printf("\033[1;32mInstalling OpenSSL\033[0m\n")
ExecSystem("/usr/bin/zypper install -y openssl")
}
func instDockerUbuntu() {