Skip to content

Instantly share code, notes, and snippets.

@atulkamble
Created December 13, 2021 07:17
Show Gist options
  • Save atulkamble/606589f7a3904e82623f663969fd768a to your computer and use it in GitHub Desktop.
Save atulkamble/606589f7a3904e82623f663969fd768a to your computer and use it in GitHub Desktop.
install PowerShell on the Ubuntu 20.04.
# Update the list of packages
sudo apt-get update
# Install pre-requisite packages.
sudo apt-get install -y wget apt-transport-https software-properties-common
# Download the Microsoft repository GPG keys
wget -q https://packages.microsoft.com/config/ubuntu/20.04/packages-microsoft-prod.deb
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
# Update the list of packages after we added packages.microsoft.com
sudo apt-get update
# Install PowerShell
sudo apt-get install -y powershell
# Start PowerShell
pwsh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment