From c96f4cfe130d482cb197dd637e67317f4317d1fe Mon Sep 17 00:00:00 2001 From: Basil Crow Date: Tue, 18 Jan 2022 08:01:32 -0800 Subject: [PATCH 1/2] Install Python 3 --- scripts/ubuntu-20-provision.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/scripts/ubuntu-20-provision.sh b/scripts/ubuntu-20-provision.sh index 1c1950ce5..e37d1a830 100755 --- a/scripts/ubuntu-20-provision.sh +++ b/scripts/ubuntu-20-provision.sh @@ -97,6 +97,13 @@ else apt-get install -y --no-install-recommends git fi +# Install Python 3 +apt-get install -y --no-install-recommends \ + python3 \ + python3-docker \ + python3-pip \ + python3-venv + ## Install git-lfs (after git) git_lfs_archive="git-lfs-linux-${ARCHITECTURE}-v${GIT_LFS_VERSION}.tar.gz" git_lfs_release_url="https://github.com/git-lfs/git-lfs/releases/download/v${GIT_LFS_VERSION}/${git_lfs_archive}" From 54e4a854c9f7ae893b5d686d8b9f6e9c3b94d73d Mon Sep 17 00:00:00 2001 From: Basil Crow Date: Tue, 18 Jan 2022 08:58:09 -0800 Subject: [PATCH 2/2] Add python3-wheel --- scripts/ubuntu-20-provision.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/ubuntu-20-provision.sh b/scripts/ubuntu-20-provision.sh index e37d1a830..e1b418d62 100755 --- a/scripts/ubuntu-20-provision.sh +++ b/scripts/ubuntu-20-provision.sh @@ -102,7 +102,8 @@ apt-get install -y --no-install-recommends \ python3 \ python3-docker \ python3-pip \ - python3-venv + python3-venv \ + python3-wheel ## Install git-lfs (after git) git_lfs_archive="git-lfs-linux-${ARCHITECTURE}-v${GIT_LFS_VERSION}.tar.gz"