Download and Install
This page contains detailed instructions for installing Pulumi on your machine. For links to detailed release notes, see the Available Versions page.
Get Started. Pulumi supports many clouds using the same languages, CLI, and deployment workflow. For a streamlined Pulumi walkthrough, including language runtime installation and cloud configuration, see the Get Started guides.
Installing Pulumi
macOS Sierra (10.12) or later is required.
Homebrew
You can install Pulumi through the Homebrew package manager:
$ brew install pulumiThis will install the pulumi CLI to the usual place (often /usr/local/bin/pulumi) and add it to your path.
Subsequent updates can be installed in the usual way:
$ brew upgrade pulumiInstallation Script
Alternatively, you can run our installation script.
$ curl -fsSL https://get.pulumi.com | shThis will install the pulumi CLI to ~/.pulumi/bin and add it to your path. When it can’t automatically add pulumi to your path, you will be prompted to add it manually.
See How to permanently set $PATH on Unix for guidance.
The installer script can be rerun to subsequently install new updates.
Manual Installation
If you do not wish to use the previous options, you can install Pulumi manually.
Download Pulumi 2.5.0 for macOS. For prior versions and release notes, see the Available Versions page.
Extract the tarball and move the binaries in the
pulumidirectory to a directory included in your system’s$PATH.
Installation Script
To install, run our installation script:
$ curl -fsSL https://get.pulumi.com | shThis will install the pulumi CLI to ~/.pulumi/bin and add it to your path. When it can’t automatically add pulumi to your path, you will be prompted to add it manually.
See How to permanently set $PATH on Unix for guidance.
Manual Installation
Alternatively, you can install Pulumi manually. We provide a prebuilt binary for Linux.
Download Pulumi 2.5.0 for Linux x64. For prior versions and release notes, see the Available Versions page.
Extract the tarball and move the binaries in the
pulumidirectory to a directory included in your system’s$PATH.
Windows 8 and 10 are supported.
Chocolatey
You can install Pulumi through the Chocolatey package manager:
> choco install pulumiThis will install the pulumi CLI to the usual place (often $($env:ChocolateyInstall)\lib\pulumi), will generate shims (usually $($env:ChocolateyInstall)\bin) that is added to your path.
Subsequent updates can be installed in the usual way:
> choco upgrade pulumiInstallation Script
Open a new command prompt window (WIN+R:
cmd.exe):Run our installation script:
> @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iex ((New-Object System.Net.WebClient).DownloadString('https://get.pulumi.com/install.ps1'))" && SET "PATH=%PATH%;%USERPROFILE%\.pulumi\bin"This will install the pulumi.exe CLI to %USERPROFILE%\.pulumi\bin and add it to your path.
Manual Installation
Alternatively, you can install Pulumi manually.
Download Pulumi 2.5.0 for Windows x64. For prior versions and release notes, see the Available Versions page.
Unzip the file and extract the contents to a folder such as
C:\pulumi.Add
C:\pulumi\binto your path via System Properties -> Advanced -> Environment Variables -> User Variables -> Path -> Edit.
Verifying your Installation
After installing Pulumi, verify everything is in working order by running the pulumi CLI:
$ pulumi version
v2.5.0Pulumi Not Found Error
If you get an error that pulumi could not be found, it means your path has not been configured correctly. Verify that your system’s $PATH contains the directory containing the pulumi CLI installed earlier.
New Version Warning
If a new version of Pulumi is available, the CLI produces the following example warning when running any of the available commands:
warning: A new version of Pulumi is available. To upgrade from version '0.17.26' to '2.5.0', run
$ curl -sSL https://get.pulumi.com | sh
or visit https://pulumi.com/docs/reference/install/ for manual instructions and release notes.
Skip version check: If you're in an environment with no internet
access, you may skip the Pulumi version update check by setting the environment variable
PULUMI_SKIP_UPDATE_CHECK to 1 or true.
Upgrading Pulumi
If you are upgrading to Pulumi 2.0, please see our migration guide.
Uninstalling Pulumi
To uninstall Pulumi, remove the .pulumi folder from your home directory. If you installed Pulumi manually, you should
also remove the pulumi folder that was created.