Created
August 21, 2024 08:51
-
-
Save jansenicus/6c613e157c8455070f5970ddeebf41c4 to your computer and use it in GitHub Desktop.
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
# How to Install Powershell on Ubuntu 24.04 | |
sudo apt get update | |
# --- reason: Microsoft still using libicu72, while ubuntu 24.04 already using newer libicu -------------- | |
wget https://mirror.it.ubc.ca/ubuntu/pool/main/i/icu/libicu72_72.1-3ubuntu3_amd64.deb | |
sudo dpkg -i libicu72_72.1-3ubuntu3_amd64.deb | |
# --- check latest release on https://github.com/PowerShell/PowerShell/releases -------------------------- | |
wget https://github.com/PowerShell/PowerShell/releases/download/v7.4.5/powershell_7.4.5-1.deb_amd64.deb | |
sudo dpkg -i powershell_7.4.5-1.deb_amd64.deb | |
pwsh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment