Supports Ubuntu 14.04, Ubuntu 16.04, CentOS 7, Arch Linux, many Linux distributions (AppImage), and macOS 10.11. All packages are available on our GitHub releases page.
All of these steps can be done automatically by the download.sh
script.
You should never run a script without reading it first!
Please read the download script first, and then if you want to run it, use:
bash <(curl -fsSL https://raw.githubusercontent.com/PowerShell/PowerShell/v6.0.0-alpha.18/tools/download.sh)
Once the package is installed, run powershell
from a terminal.
PowerShell Core, for Linux, is published to package repositories for easy installation (and updates). This is the preferred method.
# Import the public repository GPG keys
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
# Register the Microsoft Ubuntu repository
curl https://packages.microsoft.com/config/ubuntu/14.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
# Update apt-get
sudo apt-get update
# Install PowerShell
sudo apt-get install -y powershell
# Start PowerShell
powershell
After registering the Microsoft repository once as superuser,
from then on, you just need to use sudo apt-get upgrade powershell
to update it.
Using Ubuntu 14.04, download the Debian package
powershell_6.0.0-alpha.18-1ubuntu1.14.04.1_amd64.deb
from the releases page onto the Ubuntu machine.
Then execute the following in the terminal:
sudo dpkg -i powershell_6.0.0-alpha.18-1ubuntu1.14.04.1_amd64.deb
sudo apt-get install -f
Please note that
dpkg -i
will fail with unmet dependencies; the next command,apt-get install -f
resolves these and then finishes configuring the PowerShell package.
sudo apt-get remove powershell
PowerShell Core, for Linux, is published to package repositories for easy installation (and updates). This is the preferred method.
# Import the public repository GPG keys
curl https://packages.microsoft.com/keys/microsoft.asc | sudo apt-key add -
# Register the Microsoft Ubuntu repository
curl https://packages.microsoft.com/config/ubuntu/16.04/prod.list | sudo tee /etc/apt/sources.list.d/microsoft.list
# Update apt-get
sudo apt-get update
# Install PowerShell
sudo apt-get install -y powershell
# Start PowerShell
powershell
After registering the Microsoft repository once as superuser,
from then on, you just need to use sudo apt-get upgrade powershell
to update it.
Using Ubuntu 16.04, download the Debian package
powershell_6.0.0-alpha.18-1ubuntu1.16.04.1_amd64.deb
from the releases page onto the Ubuntu machine.
Then execute the following in the terminal:
sudo dpkg -i powershell_6.0.0-alpha.18-1ubuntu1.16.04.1_amd64.deb
sudo apt-get install -f
Please note that
dpkg -i
will fail with unmet dependencies; the next command,apt-get install -f
resolves these and then finishes configuring the PowerShell package.
sudo apt-get remove powershell
This works for Debian Stretch (now testing) as well.
This package also works on Oracle Linux 7 and Red Hat Enterprise Linux (RHEL) 7.
PowerShell Core for Linux is published to official Microsoft repositories for easy installation (and updates).
# Register the Microsoft RedHat repository
curl https://packages.microsoft.com/config/rhel/7/prod.repo | sudo tee /etc/yum.repos.d/microsoft.repo
# Install PowerShell
sudo yum install -y powershell
# Start PowerShell
powershell
After registering the Microsoft repository once as superuser,
you just need to use sudo yum update powershell
to update PowerShell.
Using CentOS 7, download the RPM package
powershell-6.0.0_alpha.18-1.el7.centos.x86_64.rpm
from the releases page onto the CentOS machine.
Then execute the following in the terminal:
sudo yum install ./powershell-6.0.0_alpha.18-1.el7.centos.x86_64.rpm
You can also install the RPM without the intermediate step of downloading it:
sudo yum install https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.18/powershell-6.0.0_alpha.18-1.el7.centos.x86_64.rpm
sudo yum remove powershell
Installation instruction for OpenSUSE 42.1.
Using OpenSUSE 42.1, download the RPM package
powershell-6.0.0_alpha.18-1.suse.42.1.x86_64.rpm
from the releases page onto the OpenSUSE machine.
Then execute the following in the terminal:
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo zypper install ./powershell-6.0.0_alpha.18-1.suse.42.1.x86_64.rpm
You can also install the RPM without the intermediate step of downloading it:
sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
sudo zypper install https://github.com/PowerShell/PowerShell/releases/download/v6.0.0-alpha.18/powershell-6.0.0_alpha.18-1.suse.42.1.x86_64.rpm
sudo zypper remove powershell
PowerShell is available from the Arch Linux User Repository (AUR) as a release or the latest development build.
Packages in the AUR are community maintained - there is no official support.
For more information on installing packages from the AUR, see the Arch Linux wiki.
Using a recent Linux distribution,
download the AppImage PowerShell-6.0.0-alpha.18-x86_64.AppImage
from the releases page onto the Linux machine.
Then execute the following in the terminal:
chmod a+x PowerShell-6.0.0-alpha.18-x86_64.AppImage
./PowerShell-6.0.0-alpha.18-x86_64.AppImage
The AppImage lets you run PowerShell without installing it. It is a portable application that bundles PowerShell and its dependencies (including .NET Core's system dependencies) into one cohesive package. This package works independently of the user's Linux distribution, and is a single binary.
Using macOS 10.11, download the PKG package
powershell-6.0.0-alpha.18-osx.10.11-x64.pkg
from the releases page onto the macOS machine.
Either double-click the file and follow the prompts, or install it from the terminal:
sudo installer -pkg powershell-6.0.0-alpha.18-osx.10.11-x64.pkg -target /
PowerShell on MacOS must be removed manually.
To remove the installed package:
sudo rm -rf /usr/local/bin/powershell /usr/local/microsoft/powershell
To uninstall the additional PowerShell paths (such as the user profile path)
please see the paths section below in this document
and remove the desired the paths with sudo rm
.
Also install Homebrew's OpenSSL:
brew install openssl
brew install curl --with-openssl
Homebrew is the missing package manager for macOS.
If the brew
command was not found,
you need to install Homebrew following their instructions.
.NET Core requires Homebrew's OpenSSL because the "OpenSSL" system libraries on macOS are not OpenSSL,
as Apple deprecated OpenSSL in favor of their own libraries.
This requirement is not a hard requirement for all of PowerShell;
however, most networking functions (such as Invoke-WebRequest
)
do require OpenSSL to work properly.
Please ignore .NET Core's installation instructions to manually link the OpenSSL libraries.
This is not required for PowerShell as we patch .NET Core's cryptography libraries to find Homebrew's OpenSSL in its installed location.
Again, do not run brew link --force
nor ln -s
for OpenSSL, regardless of other instructions.
Homebrew previously allowed OpenSSL libraries to be linked to the system library location;
however, this created major security holes and is no longer allowed.
Because .NET Core's 1.0.0 release libraries still look in the prior system location for OpenSSL,
they will fail to work unless the libraries are manually placed there (security risk),
or their libraries are patched (which we do).
To patch .NET Core's cryptography libraries, we use install_name_tool
:
find ~/.nuget -name System.Security.Cryptography.Native.dylib | xargs sudo install_name_tool -add_rpath /usr/local/opt/openssl/lib
find ~/.nuget -name System.Net.Http.Native.dylib | xargs sudo install_name_tool -change /usr/lib/libcurl.4.dylib /usr/local/opt/curl/lib/libcurl.4.dylib
This updates .NET Core's library to look in Homebrew's OpenSSL installation location instead of the system library location. The PowerShell macOS package come with the necessary libraries patched, and the build script patches the libraries on-the-fly when building from source. You can run this command manually if you're having trouble with .NET Core's cryptography libraries.
$PSHOME
is/opt/microsoft/powershell/6.0.0-alpha.18/
- User profiles will be read from
~/.config/powershell/profile.ps1
- Default profiles will be read from
$PSHOME/profile.ps1
- User modules will be read from
~/.local/share/powershell/Modules
- Shared modules will be read from
/usr/local/share/powershell/Modules
- Default modules will be read from
$PSHOME/Modules
- PSReadline history will be recorded to
~/.local/share/powershell/PSReadLine/ConsoleHost_history.txt
The profiles respect PowerShell's per-host configuration,
so the default host-specific profiles exists at Microsoft.PowerShell_profile.ps1
in the same locations.
On Linux and macOS, the XDG Base Directory Specification is respected.
Note that because macOS is a derivation of BSD,
instead of /opt
, the prefix used is /usr/local
.
Thus, $PSHOME
is /usr/local/microsoft/powershell/6.0.0-alpha.18/
,
and the symlink is placed at /usr/local/bin/powershell
.