Skip to content

Instantly share code, notes, and snippets.

@yuriburger
Last active April 23, 2020 09:44
Show Gist options
  • Save yuriburger/c73809873694ae012a0a4150e0e907fd to your computer and use it in GitHub Desktop.
Save yuriburger/c73809873694ae012a0a4150e0e907fd to your computer and use it in GitHub Desktop.
[update all the things] update all the things #powershell #cli #angular #npm #maven #az
# AZ CLI on Ubuntu
sudo apt-get update
sudo apt-get install azure-cli
# AZ CLI on Windows
# https://docs.microsoft.com/en-us/cli/azure/install-azure-cli-windows
Invoke-WebRequest -Uri https://aka.ms/installazurecliwindows -OutFile .\AzureCLI.msi; Start-Process msiexec.exe -Wait -ArgumentList '/I AzureCLI.msi /quiet'
# Maven on Windows
https://maven.apache.org/download.cgi
# PowerShell Core on Ubuntu
wget -O - https://aka.ms/install-powershell.sh | sudo bash
# PowerShell Core on Windows
iex "& { $(irm https://aka.ms/install-powershell.ps1) } -UseMSI"
# Node on Windows
https://nodejs.org/en/download/
# .NET Core SDK on Ubuntu
wget -q https://packages.microsoft.com/config/ubuntu/19.04/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
sudo dpkg -i package
sudo apt-get update
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-sdk-3.1s-microsoft-prod.deb
# NPM update en install
npm install -g npm@latest
npm uninstall -g angular-cli
npm cache verify
npm install -g @angular/cli@latest
# Helm on Windows
choco update kubernetes-helm
# Helm on Ubuntu
curl https://raw.githubusercontent.com/helm/helm/master/scripts/get-helm-3 | bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment