1
0
mirror of https://github.com/gryf/vmstrap.git synced 2025-12-18 12:00:31 +01:00

Added support for ubuntu 20.04

This commit is contained in:
2021-01-19 11:22:04 +01:00
parent 5b02416ecb
commit bafc1cd30a

View File

@@ -149,8 +149,10 @@ ubuntu() {
vim-gtk)
;;
'20.04')
echo "20.04 is not yet supported"
exit 1
PGS=(ipython3
python3-pip
tmate
vim-gtk)
;;
*)
echo "Unsupported Ubuntu version: ${DISTRO_R}"
@@ -179,8 +181,13 @@ ubuntu() {
sudo pip3 install remote_pdb rainbow pdbpp
;;
'20.04')
echo "20.04 is not yet supported"
exit 1
sudo update-alternatives \
--install /usr/bin/python python /usr/bin/python3.6 10
sudo update-alternatives \
--install /usr/bin/pip pip /usr/bin/pip3 10
# 5.
sudo pip3 install pip --upgrade
sudo pip3 install remote_pdb rainbow pdbpp
;;
esac