mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
amd64
This commit is contained in:
parent
847751aed3
commit
af7a646002
1 changed files with 23 additions and 7 deletions
|
@ -1,5 +1,11 @@
|
|||
#!/bin/bash
|
||||
# https://packages.debian.org/bullseye/libpython2.7-stdlib
|
||||
ARCH=$(dpkg --print-architecture)
|
||||
|
||||
apt -y install virtualenv
|
||||
apt -y install mime-support #transitional package
|
||||
#apt -y install libffi8
|
||||
|
||||
cd /tmp
|
||||
case $ARCH in
|
||||
"arm64")
|
||||
|
@ -11,12 +17,23 @@ case $ARCH in
|
|||
apt install ./python2.7-minimal_2.7.18-8_arm64.deb
|
||||
;;
|
||||
"amd64")
|
||||
wget http://ftp.debian.org/debian/pool/main/p/python2.7/libpython2.7-minimal_2.7.18-8_amd64.deb
|
||||
apt install ./libpython2.7-minimal_2.7.18-8_amd64.deb
|
||||
wget http://ftp.debian.org/debian/pool/main/p/python2.7/libpython2.7-stdlib_2.7.18-8_amd64.deb
|
||||
apt install ./libpython2.7-stdlib_2.7.18-8_amd64.deb
|
||||
wget http://ftp.debian.org/debian/pool/main/p/python2.7/python2.7-minimal_2.7.18-8_amd64.deb
|
||||
apt install ./python2.7-minimal_2.7.18-8_amd64.deb
|
||||
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
|
||||
;;
|
||||
"armhf")
|
||||
wget http://raspbian.raspberrypi.org/raspbian/pool/main/p/python2.7/libpython2.7-minimal_2.7.18-13.2_armhf.deb
|
||||
|
@ -28,4 +45,3 @@ case $ARCH in
|
|||
;;
|
||||
esac
|
||||
rm *.deb
|
||||
apt -y install virtualenv
|
||||
|
|
Loading…
Add table
Reference in a new issue