Last active
October 15, 2019 13:17
-
-
Save Himura2la/ef6b49fcb0a6377375e94ae53b574363 to your computer and use it in GitHub Desktop.
Install PowerShell on Debian-based distro (based on downloaded sources.list)
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
sudo apt-get update | |
sudo apt-get install -y wget gnupg apt-transport-https | |
wget -qO- https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add - | |
sudo wget -qO /etc/apt/sources.list.d/microsoft.list https://packages.microsoft.com/config/$(. /etc/os-release && echo $ID/$VERSION_ID)/prod.list | |
sudo apt-get update | |
sudo apt-get install -y powershell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment