remove Python dependencies since we don't need them anymore
This commit is contained in:
parent
7e30f9e416
commit
0c0a50203f
1 changed files with 10 additions and 10 deletions
20
inst_deps.go
20
inst_deps.go
|
@ -6,28 +6,28 @@ import(
|
||||||
)
|
)
|
||||||
|
|
||||||
func instDepsUbuntu() {
|
func instDepsUbuntu() {
|
||||||
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Ubuntu repo\033[0m\n")
|
fmt.Printf("\033[1;32mInstalling OpenSSL from Ubuntu repo\033[0m\n")
|
||||||
ExecSystem("/usr/bin/apt install -y python3-pymongo python3-psutil openssl")
|
ExecSystem("/usr/bin/apt install -y openssl")
|
||||||
}
|
}
|
||||||
|
|
||||||
func instDepsDebian() {
|
func instDepsDebian() {
|
||||||
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Debian repo\033[0m\n")
|
fmt.Printf("\033[1;32mInstalling OpenSSL from Debian repo\033[0m\n")
|
||||||
ExecSystem("/usr/bin/apt install -y python3-pymongo python3-psutil openssl")
|
ExecSystem("/usr/bin/apt install -y openssl")
|
||||||
}
|
}
|
||||||
|
|
||||||
func instDepsFedora() {
|
func instDepsFedora() {
|
||||||
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL from Fedora repo\033[0m\n")
|
fmt.Printf("\033[1;32mInstalling OpenSSL from Fedora repo\033[0m\n")
|
||||||
ExecSystem("/usr/bin/dnf install -y python3-pymongo python3-psutil openssl")
|
ExecSystem("/usr/bin/dnf install -y openssl")
|
||||||
}
|
}
|
||||||
|
|
||||||
func instDepsRedHat() {
|
func instDepsRedHat() {
|
||||||
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL\033[0m\n")
|
fmt.Printf("\033[1;32mInstalling OpenSSL\033[0m\n")
|
||||||
ExecSystem("/usr/bin/dnf install -y python3-pymongo python3-psutil openssl")
|
ExecSystem("/usr/bin/dnf install -y openssl")
|
||||||
}
|
}
|
||||||
|
|
||||||
func instDepsOpenSUSE() {
|
func instDepsOpenSUSE() {
|
||||||
fmt.Printf("\033[1;32mInstalling Python dependencies and OpenSSL\033[0m\n")
|
fmt.Printf("\033[1;32mInstalling OpenSSL\033[0m\n")
|
||||||
ExecSystem("/usr/bin/zypper install -y python3-pymongo python3-psutil openssl")
|
ExecSystem("/usr/bin/zypper install -y openssl")
|
||||||
}
|
}
|
||||||
|
|
||||||
func instDockerUbuntu() {
|
func instDockerUbuntu() {
|
||||||
|
|
Loading…
Reference in a new issue