Skip to content

Instantly share code, notes, and snippets.

@mcx808
Created March 22, 2021 11:18
Show Gist options
  • Save mcx808/a6ec89d034a962fc8a7dca348180e726 to your computer and use it in GitHub Desktop.
Save mcx808/a6ec89d034a962fc8a7dca348180e726 to your computer and use it in GitHub Desktop.
Install Powershell on Debian 10 (Buster)
# Download the Microsoft repository GPG keys
wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb
# Register the Microsoft repository GPG keys
sudo dpkg -i packages-microsoft-prod.deb
# Update the list of products
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