From d53b18de073673859d61fe2ae3f54996675b8b4a Mon Sep 17 00:00:00 2001 From: Jrohy Date: Wed, 27 Mar 2019 19:27:53 +0800 Subject: [PATCH] add Raspbian support --- py3_install.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/py3_install.sh b/py3_install.sh index 6cdce26..edd941a 100644 --- a/py3_install.sh +++ b/py3_install.sh @@ -71,6 +71,9 @@ checkSys() { elif [[ $(cat /etc/issue | grep Ubuntu) ]];then OS='Ubuntu' PACKAGE_MANAGER='apt-get' + elif [[ $(cat /etc/issue | grep Raspbian) ]];then + OS='Raspbian' + PACKAGE_MANAGER='apt-get' else colorEcho ${RED} "Not support OS, Please reinstall OS and retry!" exit 1