From 7a8309553b8734911487027fae3c2251a7556332 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luka=20Barbi=C4=87?= Date: Wed, 3 Feb 2021 22:33:52 +0100 Subject: [PATCH] Update Python (#70) * Update Python to 3.9.1 --- var/install.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/var/install.txt b/var/install.txt index 28adfa1..bc7eae9 100644 --- a/var/install.txt +++ b/var/install.txt @@ -37,17 +37,17 @@ echo 'export PATH=$PATH:/opt/python2/Python-2.7.17' >> /opt/.profile source /opt/.profile # install python3 -# final binary: /opt/python3/Python-3.8.2/python -# get version: /opt/python3/Python-3.8.2/python -V +# final binary: /opt/python3/Python-3.9.1/python +# get version: /opt/python3/Python-3.9.1/python -V cd /opt && mkdir python3 && cd python3 -wget https://www.python.org/ftp/python/3.8.2/Python-3.8.2.tar.xz -unxz Python-3.8.2.tar.xz -tar -xf Python-3.8.2.tar -cd Python-3.8.2 +wget https://www.python.org/ftp/python/3.9.1/Python-3.9.1.tar.xz +unxz Python-3.9.1.tar.xz +tar -xf Python-3.9.1.tar +cd Python-3.9.1 ./configure make -ln -s python python3.8 -echo 'export PATH=$PATH:/opt/python3/Python-3.8.2' >> /opt/.profile +ln -s python python3.9 +echo 'export PATH=$PATH:/opt/python3/Python-3.9.1' >> /opt/.profile source /opt/.profile # install paradoc