Skip to content

Commit 4a558b4

Browse files
committed
docs: improve install instructions
1 parent 382ba23 commit 4a558b4

File tree

1 file changed

+30
-9
lines changed

1 file changed

+30
-9
lines changed

docs/v2/installation/binary_release.mdx

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,43 @@ title: Binary Releases
44

55
Oura can be run as a standalone executable. Follow the instructions for your particular OS / Platform to install a local copy from our Github pre-built releases.
66

7-
## MacOS
7+
## Install via shell script
88

9-
Use the following command to download and install _Oura's_ binary release for MacOS:
9+
You can run the following command line script to install Oura on supported systems (Mac / Linux)
1010

1111
```sh
12-
curl --silent --location https://git.io/JD2iH | \
13-
tar xz -C /tmp && mv /tmp/oura /usr/local/bin
12+
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/txpipe/oura/releases/latest/download/oura-installer.sh | sh
1413
```
1514

16-
## GNU/Linux
15+
## Install via powershell script
1716

18-
Use the following command to download and install _Oura's_ binary release for GNU/Linux:
17+
You can use Powershell to install Oura on Windows systems.
1918

2019
```sh
21-
curl --silent --location https://git.io/JD2ix | \
22-
tar xz -C /tmp && mv /tmp/oura /usr/local/bin
20+
powershell -c "irm https://github.com/txpipe/oura/releases/latest/download/oura-installer.ps1 | iex"
2321
```
2422

25-
Check the [latest release](https://github.com/txpipe/oura/releases/latest) for more binary download options.
23+
## Install via Homebrew
24+
25+
You can use Homebrew to install the latest version of Oura in supported systems (Mac / Linux)
26+
27+
```sh
28+
brew install txpipe/tap/oura
29+
```
30+
31+
## Install via NPM
32+
33+
You can use NPM to install the latest version of Oura in supported systems (Mac / Linux)
34+
35+
```sh
36+
npm install @txpipe/oura
37+
```
38+
39+
## Download Binaries
40+
41+
| File | Platform |
42+
|--------|----------|
43+
| [oura-aarch64-apple-darwin.tar.xz](https://github.com/txpipe/oura/releases/latest/download/oura-aarch64-apple-darwin.tar.xz) | Apple Silicon macOS |
44+
| [oura-x86_64-pc-windows-msvc.zip](https://github.com/txpipe/oura/releases/latest/download/oura-x86_64-pc-windows-msvc.zip) | x64 Windows |
45+
| [oura-x86_64-unknown-linux-gnu.tar.xz](https://github.com/txpipe/oura/releases/latest/download/oura-x86_64-unknown-linux-gnu.tar.xz) | x64 Linux |
46+
| [oura-aarch64-unknown-linux-gnu.tar.xz](https://github.com/txpipe/oura/releases/latest/download/oura-aarch64-unknown-linux-gnu.tar.xz) | ARM64 Linux |

0 commit comments

Comments
 (0)