From 813578cf70c3449c5c25b942d9b1a11ba0e85697 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Thu, 15 Aug 2024 13:09:25 +0300 Subject: [PATCH] bug fix: ubuntu 20 install --- cyberpanel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cyberpanel.sh b/cyberpanel.sh index 1df20fc2f..f8b4808bb 100644 --- a/cyberpanel.sh +++ b/cyberpanel.sh @@ -1865,7 +1865,7 @@ Retry_Command "pip install --default-timeout=3600 -r /usr/local/requirments.txt" if [[ "$Server_OS" = "Ubuntu" ]] && [[ "$Server_OS_Version" = "22" ]] ; then cp /usr/bin/python3.10 /usr/local/CyberCP/bin/python3 else - if [[ "$Server_OS_Version" = "9" ]] || [[ "$Server_OS_Version" = "8" ]]; then + if [[ "$Server_OS_Version" = "9" ]] || [[ "$Server_OS_Version" = "8" ]] || [[ "$Server_OS_Version" = "20" ]]; then echo "PYTHONHOME=/usr" > /usr/local/lscp/conf/pythonenv.conf else # Uncomment and use the following lines if necessary for other OS versions