Skip to content

Commit 2f92aad

Browse files
Release v2.0.23
1 parent cd9fd7e commit 2f92aad

13 files changed

Lines changed: 691 additions & 162 deletions

File tree

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

docs/Documentation/installation.html

Lines changed: 5 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -65,42 +65,14 @@ <h2 id="install">Install</h2>
6565

6666
<div class="tabs">
6767
<div class="tab-buttons">
68-
<button class="tab-btn active" data-tab="tab-mac">macOS</button>
69-
<button class="tab-btn" data-tab="tab-linux">Linux</button>
68+
<button class="tab-btn active" data-tab="tab-mac">macOS / Linux</button>
7069
<button class="tab-btn" data-tab="tab-win">Windows</button>
71-
<button class="tab-btn" data-tab="tab-npm">npm / Server</button>
7270
</div>
7371

7472
<div id="tab-mac" class="tab-content active">
75-
<p>Install via the public script:</p>
73+
<p>Run the install script:</p>
7674
<pre><code>curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash</code></pre>
77-
<p>Or download a native macOS binary directly from the public release assets:</p>
78-
<pre><code><span class="token-comment"># Apple Silicon</span>
79-
curl -L https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-aarch64-apple-darwin -o openanalyst
80-
chmod +x openanalyst
81-
sudo mv openanalyst /usr/local/bin/openanalyst
82-
83-
<span class="token-comment"># Intel</span>
84-
curl -L https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-apple-darwin -o openanalyst
85-
chmod +x openanalyst
86-
sudo mv openanalyst /usr/local/bin/openanalyst</code></pre>
87-
<p>The full OpenAnalyst CLI with TUI is published in the public repo releases at <a href="https://github.com/OpenAnalystInc/cli/releases/latest" target="_blank" rel="noreferrer">OpenAnalystInc/cli/releases/latest</a>.</p>
88-
</div>
89-
90-
<div id="tab-linux" class="tab-content">
91-
<p>Install via the public script:</p>
92-
<pre><code>curl -fsSL https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.sh | bash</code></pre>
93-
<p>Or download a native Linux binary directly:</p>
94-
<pre><code><span class="token-comment"># x86_64</span>
95-
curl -L https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-unknown-linux-gnu -o openanalyst
96-
chmod +x openanalyst
97-
sudo mv openanalyst /usr/local/bin/openanalyst
98-
99-
<span class="token-comment"># ARM64</span>
100-
curl -L https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-aarch64-unknown-linux-gnu -o openanalyst
101-
chmod +x openanalyst
102-
sudo mv openanalyst /usr/local/bin/openanalyst</code></pre>
103-
<p>All Linux binaries are published from the public repo release page: <a href="https://github.com/OpenAnalystInc/cli/releases/latest" target="_blank" rel="noreferrer">OpenAnalystInc/cli/releases/latest</a>.</p>
75+
<p>This downloads the latest release binary and places it in <code>/usr/local/bin/openanalyst</code>.</p>
10476

10577
<div class="callout callout-tip">
10678
<div class="callout-title">Tip</div>
@@ -111,16 +83,10 @@ <h2 id="install">Install</h2>
11183
<div id="tab-win" class="tab-content">
11284
<p>Open PowerShell as Administrator:</p>
11385
<pre><code>irm https://raw.githubusercontent.com/OpenAnalystInc/cli/main/install.ps1 | iex</code></pre>
114-
<p>Or download a native Windows binary directly:</p>
115-
<pre><code><span class="token-comment"># x64</span>
116-
New-Item -ItemType Directory -Force "$HOME\.openanalyst\bin" | Out-Null
117-
Invoke-WebRequest -Uri "https://github.com/OpenAnalystInc/cli/releases/latest/download/openanalyst-x86_64-pc-windows-msvc.exe" -OutFile "$HOME\.openanalyst\bin\openanalyst.exe"</code></pre>
118-
<p>The Windows install script is served from the public repo, and the matching native binaries are published at <a href="https://github.com/OpenAnalystInc/cli/releases/latest" target="_blank" rel="noreferrer">OpenAnalystInc/cli/releases/latest</a>.</p>
86+
<p>The binary is placed in your user PATH automatically.</p>
11987
</div>
12088

121-
<div id="tab-npm" class="tab-content">
122-
<p>Install from npm:</p>
123-
<pre><code>npm install -g @openanalystinc/openanalyst-cli</code></pre>
89+
<div id="tab-source" class="tab-content">
12490
<p>Backend-only deployment:</p>
12591
<pre><code>npm install -g @openanalystinc/openanalyst-cli
12692
openanalyst --notui
@@ -134,11 +100,6 @@ <h2 id="install">Install</h2>
134100
</div>
135101
</div>
136102

137-
<div class="callout callout-info">
138-
<div class="callout-title">Public Binary Source</div>
139-
<p>The live docs, install scripts, and downloadable binaries are all published from the public repository: <a href="https://github.com/OpenAnalystInc/cli" target="_blank" rel="noreferrer">OpenAnalystInc/cli</a>. For the full OpenAnalyst CLI with TUI, use the latest release assets or the install scripts above.</p>
140-
</div>
141-
142103
<h2 id="verify">Verify Installation</h2>
143104
<pre><code><span class="token-comment"># Check the version</span>
144105
openanalyst --version

0 commit comments

Comments
 (0)