install.sh adopted for debian/bullseye

This commit is contained in:
jaytee34 2022-05-24 23:27:27 +02:00
parent 5ebbaba6f1
commit 5a8131a593

View file

@ -108,9 +108,17 @@ tput cup 13 15
echo "[ 2/9] [##-------]"
tput cup 15 5
echo "-> download GIT and other stuff.........."
apt-get -y install git cmake build-essential libusb-1.0 qt4-qmake qt4-default libpulse-dev libx11-dev sox python-pip >> $boswatch_install_path/setup_log.txt 2>&1
apt-get -y install git python cmake build-essential libusb-1.0 qt5-qmake qtbase5-dev libpulse-dev libx11-dev sox >> \
$boswatch_install_path/setup_log.txt 2>&1
exitcodefunction $? download stuff
# download and install pip2
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py >> $boswatch_install_path/setup_log.txt 2>&1
exitcodefunction $? curl pip2
python2 get-pip.py >> $boswatch_install_path/setup_log.txt 2>&1 exitcodefunction $? python2 get-pip
rm get-pip.py
# download BOSWatch via git
tput cup 13 15
echo "[ 3/9] [###------]"