From cfc061bec7a9b82cfe04d6c0f35f138ff0c8551a Mon Sep 17 00:00:00 2001 From: Steven Foerster Date: Tue, 16 Feb 2021 23:05:08 -0500 Subject: [PATCH 1/2] cryptography version --- scripts/subinstallers/docker_manual.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/subinstallers/docker_manual.sh b/scripts/subinstallers/docker_manual.sh index 2cbb329..c8ec45a 100755 --- a/scripts/subinstallers/docker_manual.sh +++ b/scripts/subinstallers/docker_manual.sh @@ -63,6 +63,8 @@ echo "Installing Docker Compose" # Install Docker Compose from pip # This might take a while -sudo pip3 install docker-compose +sudo pip3 install \ + cryptography==3.3.2 \ # >3.4 requires rust to compile, and no rust compiler is readily available for ARM + docker-compose #fi From 5cd59cc8049e0bface9214e24c63aced1053eb03 Mon Sep 17 00:00:00 2001 From: Steven Foerster Date: Tue, 16 Feb 2021 23:14:56 -0500 Subject: [PATCH 2/2] formatting --- scripts/subinstallers/docker_manual.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/subinstallers/docker_manual.sh b/scripts/subinstallers/docker_manual.sh index c8ec45a..2d02ddb 100755 --- a/scripts/subinstallers/docker_manual.sh +++ b/scripts/subinstallers/docker_manual.sh @@ -63,8 +63,7 @@ echo "Installing Docker Compose" # Install Docker Compose from pip # This might take a while -sudo pip3 install \ - cryptography==3.3.2 \ # >3.4 requires rust to compile, and no rust compiler is readily available for ARM - docker-compose +# cryptography >=3.4 requires rust to compile, and no rust compiler is readily available for ARM +sudo pip3 install cryptography==3.3.2 docker-compose #fi