Created
March 22, 2021 11:18
-
-
Save mcx808/a6ec89d034a962fc8a7dca348180e726 to your computer and use it in GitHub Desktop.
Install Powershell on Debian 10 (Buster)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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