1
0
mirror of https://github.com/gryf/vmstrap.git synced 2025-12-18 20:10:28 +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) vim-gtk)
;; ;;
'20.04') '20.04')
echo "20.04 is not yet supported" PGS=(ipython3
exit 1 python3-pip
tmate
vim-gtk)
;; ;;
*) *)
echo "Unsupported Ubuntu version: ${DISTRO_R}" echo "Unsupported Ubuntu version: ${DISTRO_R}"
@@ -179,8 +181,13 @@ ubuntu() {
sudo pip3 install remote_pdb rainbow pdbpp sudo pip3 install remote_pdb rainbow pdbpp
;; ;;
'20.04') '20.04')
echo "20.04 is not yet supported" sudo update-alternatives \
exit 1 --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 esac