added command to symlink python to python3

This commit is contained in:
2024-04-12 12:04:11 -05:00
parent bb88a8431f
commit 7979815990
2 changed files with 12 additions and 0 deletions

View File

@@ -46,6 +46,12 @@ fi
# remove os prober
apt-get remove os-prober -y > /dev/null 2>&1
# symlink python3 to python
if [[ ! -f /usr/bin/python ]]
then
ln /usr/bin/python3 /usr/bin/python
fi
# update and upgrade
apt-get update
apt-get upgrade -y

View File

@@ -17,6 +17,12 @@ fi
# remove os prober
apt-get remove os-prober -y
# symlink python3 to python
if [[ ! -f /usr/bin/python ]]
then
ln /usr/bin/python3 /usr/bin/python
fi
# update and upgrade
apt-get update
apt-get upgrade -y