2023-04-05 18:02:43 +00:00
|
|
|
#!/bin/bash
|
2023-04-06 21:17:44 +00:00
|
|
|
# https://packages.debian.org/bullseye/libpython2.7-stdlib
|
2023-04-05 18:02:43 +00:00
|
|
|
ARCH=$(dpkg --print-architecture)
|
2023-04-06 21:17:44 +00:00
|
|
|
|
|
|
|
apt -y install virtualenv
|
|
|
|
apt -y install mime-support #transitional package
|
|
|
|
#apt -y install libffi8
|
|
|
|
|
2023-04-05 18:02:43 +00:00
|
|
|
cd /tmp
|
|
|
|
case $ARCH in
|
|
|
|
"arm64")
|
2023-04-06 21:56:37 +00:00
|
|
|
wget http://ftp.debian.org/debian/pool/main/o/openssl/libssl1.1_1.1.1n-0+deb11u4_arm64.deb
|
|
|
|
apt install ./libssl1.1_1.1.1n-0+deb11u4_arm64.deb
|
|
|
|
|
|
|
|
wget http://ftp.debian.org/debian/pool/main/libf/libffi/libffi7_3.3-6_arm64.deb
|
|
|
|
apt install ./libffi7_3.3-6_arm64.deb
|
|
|
|
|
2023-04-05 18:02:43 +00:00
|
|
|
wget http://ftp.debian.org/debian/pool/main/p/python2.7/libpython2.7-minimal_2.7.18-8_arm64.deb
|
|
|
|
apt install ./libpython2.7-minimal_2.7.18-8_arm64.deb
|
2023-04-06 21:56:37 +00:00
|
|
|
|
2023-04-06 02:00:39 +00:00
|
|
|
wget http://ftp.debian.org/debian/pool/main/p/python2.7/libpython2.7-stdlib_2.7.18-8_arm64.deb
|
|
|
|
apt install ./python2.7-stdlib_2.7.18-8_arm64.deb
|
2023-04-06 21:56:37 +00:00
|
|
|
|
2023-04-05 18:02:43 +00:00
|
|
|
wget http://ftp.debian.org/debian/pool/main/p/python2.7/python2.7-minimal_2.7.18-8_arm64.deb
|
|
|
|
apt install ./python2.7-minimal_2.7.18-8_arm64.deb
|
2023-04-06 21:56:37 +00:00
|
|
|
|
|
|
|
wget http://ftp.debian.org/debian/pool/main/p/python2.7/python2.7_2.7.18-8_arm64.deb
|
|
|
|
apt install ./python2.7_2.7.18-8_arm64.deb
|
2023-04-05 18:02:43 +00:00
|
|
|
;;
|
|
|
|
"amd64")
|
2023-04-06 21:17:44 +00:00
|
|
|
wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
|
|
|
|
apt install ./libssl1.1_1.1.1f-1ubuntu2.17_amd64.deb
|
|
|
|
|
|
|
|
wget http://mirrors.edge.kernel.org/ubuntu/pool/universe/libf/libffi7/libffi7_3.3-5ubuntu1_amd64.deb
|
|
|
|
apt install ./libffi7_3.3-5ubuntu1_amd64.deb
|
|
|
|
|
|
|
|
wget http://mirrors.edge.kernel.org/ubuntu/pool/universe/p/python2.7/libpython2.7-minimal_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
apt install ./libpython2.7-minimal_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
|
|
|
|
wget http://mirrors.edge.kernel.org/ubuntu/pool/universe/p/python2.7/libpython2.7-stdlib_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
apt install ./libpython2.7-stdlib_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
|
|
|
|
wget http://mirrors.edge.kernel.org/ubuntu/pool/universe/p/python2.7/python2.7-minimal_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
apt install ./python2.7-minimal_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
|
|
|
|
wget http://mirrors.kernel.org/ubuntu/pool/universe/p/python2.7/python2.7_2.7.18-13ubuntu2_amd64.deb
|
|
|
|
apt install ./python2.7_2.7.18-13ubuntu2_amd64.deb
|
2023-04-05 18:02:43 +00:00
|
|
|
;;
|
|
|
|
"armhf")
|
|
|
|
wget http://raspbian.raspberrypi.org/raspbian/pool/main/p/python2.7/libpython2.7-minimal_2.7.18-13.2_armhf.deb
|
|
|
|
apt install ./libpython2.7-minimal_2.7.18-13.2_armhf.deb
|
2023-04-06 02:00:39 +00:00
|
|
|
wget http://raspbian.raspberrypi.org/raspbian/pool/main/p/python2.7/libpython2.7-stdlib_2.7.18-13.2_armhf.deb
|
|
|
|
apt install ./libpython2.7-stdlib_2.7.18-13.2_armhf.deb
|
2023-04-05 18:02:43 +00:00
|
|
|
wget http://raspbian.raspberrypi.org/raspbian/pool/main/p/python2.7/python2.7-minimal_2.7.18-13.2_armhf.deb
|
2023-04-06 02:00:39 +00:00
|
|
|
apt install ./python2.7-minimal_2.7.18-13.2_armhf.deb
|
2023-04-05 18:02:43 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
rm *.deb
|