Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
Add a post-install note to the getting-started guide (#3860)
Browse files Browse the repository at this point in the history
  • Loading branch information
cnunciato authored Jan 22, 2024
1 parent 93837b1 commit ca3e6dc
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions themes/default/layouts/shortcodes/install-pulumi.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,35 @@
</div>
</pulumi-choosable>
<pulumi-choosable type="os" value="windows">
{{- .Inner -}}
<div class="highlight">
<pre class="chroma"><code class="language-bat" data-lang="bat"><span class="p">&gt;</span> choco install pulumi</code></pre>
</div>
{{- .Inner -}}
</pulumi-choosable>
</pulumi-chooser>
<p>
Or explore
<a href="/docs/install/" target="_blank" rel="noopener">more installation options</a>.
Other installation options <a href="/docs/install/" target="_blank" rel="noopener">are available</a>.
When the installation completes, you can test it out by reading the current version:
</p>
<pulumi-choosable type="os" value="macos">
<div class="highlight">
<pre class="chroma"><code class="language-bash" data-lang="bash">$ pulumi version
v{{ readFile "static/latest-version" }}</code></pre>
</div>
</pulumi-choosable>
<pulumi-choosable type="os" value="linux">
<div class="highlight">
<pre class="chroma"><code class="language-bash" data-lang="bash">$ pulumi version
v{{ readFile "static/latest-version" }}</code></pre>
</div>
</pulumi-choosable>
<pulumi-choosable type="os" value="windows">
<div class="highlight">
<pre class="chroma"><code class="language-bat" data-lang="bat"><span class="p">&gt;</span> pulumi version
v{{ readFile "static/latest-version" }}</code></pre>
</div>
</pulumi-choosable>
<p>
If this doesn't work, you may need to restart your terminal to ensure the folder containing
the <code>pulumi</code> command is on your <code>PATH</code>.
</p>

0 comments on commit ca3e6dc

Please sign in to comment.