added command to symlink python to python3
This commit is contained in:
6
debian/debian-essentials.sh
vendored
6
debian/debian-essentials.sh
vendored
@@ -46,6 +46,12 @@ fi
|
|||||||
# remove os prober
|
# remove os prober
|
||||||
apt-get remove os-prober -y > /dev/null 2>&1
|
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
|
# update and upgrade
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get upgrade -y
|
apt-get upgrade -y
|
||||||
|
|||||||
@@ -17,6 +17,12 @@ fi
|
|||||||
# remove os prober
|
# remove os prober
|
||||||
apt-get remove os-prober -y
|
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
|
# update and upgrade
|
||||||
apt-get update
|
apt-get update
|
||||||
apt-get upgrade -y
|
apt-get upgrade -y
|
||||||
|
|||||||
Reference in New Issue
Block a user