Skip to content

Commit

Permalink
Add python3.8 & gcloud cli installs
Browse files Browse the repository at this point in the history
  • Loading branch information
ayubun committed Dec 14, 2022
1 parent 518bd99 commit 29b64d7
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions programs/ubuntu/packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,18 @@ sudo apt-get install neofetch -y
sudo apt-get install google-cloud-sdk-pubsub-emulator -y
sudo apt-get install net-tools -y

# python 3.8
sudo apt install software-properties-common -y
sudo add-apt-repository ppa:deadsnakes/ppa -y
sudo apt update -y
sudo apt install python3.8

# gcloud cli
sudo apt-get install apt-transport-https ca-certificates gnupg -y &> /dev/null
echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | sudo tee -a /etc/apt/sources.list.d/google-cloud-sdk.list &> /dev/null
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key --keyring /usr/share/keyrings/cloud.google.gpg add - &> /dev/null
sudo apt-get update -y &> /dev/null
sudo apt-get install google-cloud-cli -y &> /dev/null
sudo apt-get install google-cloud-cli-cbt -y &> /dev/null

sudo apt autoremove -y

0 comments on commit 29b64d7

Please sign in to comment.