Last active
March 30, 2025 13:01
-
-
Save babibn/83fd82e6daae52008e87b8926c7f2de9 to your computer and use it in GitHub Desktop.
Install Powershell 7.4.6 on Raspberry Pi RPI RBPI 32 bit
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 update | |
sudo apt install wget libssl1.1 libunwind8 | |
sudo mkdir -p /opt/microsoft/powershell/7 | |
#wget -O /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.4.6/powershell-7.4.6-linux-arm32.tar.gz | |
wget -O /tmp/powershell.tar.gz https://github.com/PowerShell/PowerShell/releases/download/v7.5.0/powershell-7.5.0-linux-arm64.tar.gz | |
sudo mkdir -p /opt/microsoft/powershell/7 | |
sudo tar zxf /tmp/powershell.tar.gz -C /opt/microsoft/powershell/7 | |
sudo chmod +x /opt/microsoft/powershell/7/pwsh | |
sudo ln -s /opt/microsoft/powershell/7/pwsh /usr/bin/pwsh | |
rm /tmp/powershell.tar.gz |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment