From 6c1ad9992db3332ee5b4d24119bb966787d526a0 Mon Sep 17 00:00:00 2001 From: William Fu-Hinthorn <13333726+hinthornw@users.noreply.github.com> Date: Tue, 25 Jul 2023 23:58:00 -0700 Subject: [PATCH] wget --- docs/docs_skeleton/vercel_build.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/docs_skeleton/vercel_build.sh b/docs/docs_skeleton/vercel_build.sh index d5e6ed290a4..4b7c5603f7e 100755 --- a/docs/docs_skeleton/vercel_build.sh +++ b/docs/docs_skeleton/vercel_build.sh @@ -2,13 +2,14 @@ yum remove openssl-devel -y yum install gcc openssl-devel bzip2-devel libffi-devel zlib-devel -y +yum install wget tar -y # Install python 3.11 to connect with openSSL 1.1.1 wget https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tgz tar xzf Python-3.11.4.tgz cd Python-3.11.4 -sudo ./configure -sudo make altinstall +./configure +make altinstall echo "Python Version" python3.11 --version cd ..