From 5ba9605981ba4967e7faa9db8b7d2470d92b5237 Mon Sep 17 00:00:00 2001 From: Simon Date: Wed, 18 Oct 2023 22:47:36 +0200 Subject: [PATCH] install venv package --- .../installscripts/buster-install-default-with-autohotspot.sh | 4 ++-- scripts/installscripts/buster-install-default.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/installscripts/buster-install-default-with-autohotspot.sh b/scripts/installscripts/buster-install-default-with-autohotspot.sh index cf0ec8d5a..1619f3ce4 100644 --- a/scripts/installscripts/buster-install-default-with-autohotspot.sh +++ b/scripts/installscripts/buster-install-default-with-autohotspot.sh @@ -824,7 +824,7 @@ install_main() { ${apt_get} ${allow_downgrades} install raspberrypi-kernel-headers fi - ${apt_get} ${allow_downgrades} install samba samba-common-bin gcc lighttpd php-common php-cgi php at mpd mpc mpg123 git ffmpeg resolvconf spi-tools netcat alsa-utils lsof procps + ${apt_get} ${allow_downgrades} install samba samba-common-bin gcc lighttpd php-common php-cgi php at mpd mpc mpg123 git ffmpeg resolvconf spi-tools netcat-traditional alsa-utils lsof procps # in the docker test env fiddling with resolv.conf causes issues, see https://stackoverflow.com/a/60576223 if [ "$DOCKER_RUNNING" != "true" ]; then @@ -833,7 +833,7 @@ install_main() { fi # prepare python3 - ${apt_get} ${allow_downgrades} install python3 python3-dev python3-pip python3-setuptools python3-wheel python3-mutagen python3-gpiozero python3-spidev + ${apt_get} ${allow_downgrades} install python3 python3-dev python3-pip python3-setuptools python3-wheel python3-mutagen python3-gpiozero python3-spidev python3-venv # use python3.7 as default sudo update-alternatives --install /usr/bin/python python /usr/bin/python3.7 1 diff --git a/scripts/installscripts/buster-install-default.sh b/scripts/installscripts/buster-install-default.sh index cf65e8a3a..b6b385e76 100644 --- a/scripts/installscripts/buster-install-default.sh +++ b/scripts/installscripts/buster-install-default.sh @@ -833,7 +833,7 @@ install_main() { fi # prepare python3 - ${apt_get} ${allow_downgrades} install python3 python3-dev python3-pip python3-setuptools python3-wheel python3-mutagen python3-gpiozero python3-spidev + ${apt_get} ${allow_downgrades} install python3 python3-dev python3-pip python3-setuptools python3-wheel python3-mutagen python3-gpiozero python3-spidev python3-venv # use python3 as default sudo update-alternatives --install /usr/bin/python python /usr/bin/python3 1