mirror of
https://github.com/openziti/zrok.git
synced 2025-02-18 11:10:57 +01:00
56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
|
---
|
||
|
title: Install zrok in macOS
|
||
|
sidebar_label: macOS
|
||
|
---
|
||
|
|
||
|
import { AssetsProvider } from '@site/src/components/assets-context';
|
||
|
import DownloadCard from '@site/src/components/download-card';
|
||
|
import styles from '@site/src/css/download-card.module.css';
|
||
|
|
||
|
## Extract Binary Distribution
|
||
|
|
||
|
<AssetsProvider>
|
||
|
<div className={styles.downloadContainer}>
|
||
|
<DownloadCard
|
||
|
osName="macOS"
|
||
|
osLogo="/img/logo-apple.svg"
|
||
|
/>
|
||
|
</div>
|
||
|
</AssetsProvider>
|
||
|
|
||
|
Download the binary distribution for your macOS architecture. For Intel Macs use the `amd64` distribution. For Apple Silicon Macs use the `arm64` distribution.
|
||
|
|
||
|
Unarchive the distribution in a temporary directory:
|
||
|
|
||
|
```text
|
||
|
mkdir /tmp/zrok && tar -xf ./zrok*darwin*.tar.gz -C /tmp/zrok
|
||
|
```
|
||
|
|
||
|
Install the `zrok` executable.
|
||
|
|
||
|
```text
|
||
|
mkdir -p ~/bin && install /tmp/zrok/zrok ~/bin/
|
||
|
```
|
||
|
|
||
|
Add `~/bin` to your shell's executable search path. Optionally add this to your ~/.zshenv to persist the change.
|
||
|
|
||
|
```text
|
||
|
export PATH=~/bin:$PATH
|
||
|
```
|
||
|
|
||
|
With the `zrok` executable in your path, you can then execute the `zrok` command from your shell:
|
||
|
|
||
|
```text
|
||
|
zrok version
|
||
|
```
|
||
|
|
||
|
```buttonless title="Output"
|
||
|
_
|
||
|
_____ __ ___ | | __
|
||
|
|_ / '__/ _ \| |/ /
|
||
|
/ /| | | (_) | <
|
||
|
/___|_| \___/|_|\_\
|
||
|
|
||
|
v0.4.0 [c889005]
|
||
|
```
|