mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
switch order for easier diff
This commit is contained in:
parent
6e08ff35eb
commit
f95db00faf
1 changed files with 15 additions and 15 deletions
|
@ -13,21 +13,6 @@ apt -y install media-types libffi8 libssl3
|
||||||
# `apt info libpython2.7-stdlib`
|
# `apt info libpython2.7-stdlib`
|
||||||
cd /tmp
|
cd /tmp
|
||||||
case $ARCH in
|
case $ARCH in
|
||||||
"arm64")
|
|
||||||
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
|
|
||||||
|
|
||||||
wget http://ftp.debian.org/debian/pool/main/p/python2.7/libpython2.7-stdlib_2.7.18-8_arm64.deb
|
|
||||||
apt install ./libpython2.7-stdlib_2.7.18-8_arm64.deb
|
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
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
|
|
||||||
rm *.deb
|
|
||||||
;;
|
|
||||||
|
|
||||||
"amd64")
|
"amd64")
|
||||||
wget http://mirrors.edge.kernel.org/ubuntu/pool/universe/p/python2.7/libpython2.7-minimal_2.7.18-13ubuntu2_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
|
apt install ./libpython2.7-minimal_2.7.18-13ubuntu2_amd64.deb
|
||||||
|
@ -43,6 +28,21 @@ case $ARCH in
|
||||||
rm *.deb
|
rm *.deb
|
||||||
;;
|
;;
|
||||||
|
|
||||||
|
"arm64")
|
||||||
|
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
|
||||||
|
|
||||||
|
wget http://ftp.debian.org/debian/pool/main/p/python2.7/libpython2.7-stdlib_2.7.18-8_arm64.deb
|
||||||
|
apt install ./libpython2.7-stdlib_2.7.18-8_arm64.deb
|
||||||
|
|
||||||
|
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
|
||||||
|
|
||||||
|
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
|
||||||
|
rm *.deb
|
||||||
|
;;
|
||||||
|
|
||||||
# trusted is used for Debian and RasPiOS as the keys would be missing for Ubuntu
|
# trusted is used for Debian and RasPiOS as the keys would be missing for Ubuntu
|
||||||
# "arm64"|"amd64")
|
# "arm64"|"amd64")
|
||||||
# apt -y install
|
# apt -y install
|
||||||
|
|
Loading…
Reference in a new issue