From 75c4284d054b2e98ead581cbcec79370e0a64765 Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Fri, 20 Dec 2019 19:33:07 +0500 Subject: [PATCH] install python 3 on centos8 --- cyberpanel.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cyberpanel.sh b/cyberpanel.sh index 709ef68f5..169341c14 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -403,6 +403,9 @@ if [[ $DEV == "ON" ]] ; then yum -y groupinstall development yum -y install https://centos7.iuscommunity.org/ius-release.rpm yum -y install python36u python36u-pip python36u-devel + fi + if [[ $CENTOS_8 == "True" ]] ; then + dnf install python3 -y fi fi fi