Skip to content

Instantly share code, notes, and snippets.

@jansenicus
Created August 21, 2024 08:51
Show Gist options
  • Save jansenicus/6c613e157c8455070f5970ddeebf41c4 to your computer and use it in GitHub Desktop.
Save jansenicus/6c613e157c8455070f5970ddeebf41c4 to your computer and use it in GitHub Desktop.
# 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