Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update download example #623

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions docs/02_build/02_installing_pixlet.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ brew install tidbyt/tidbyt/pixlet

## Install on Linux

Download the `pixlet` binary from [the latest release][1] and move it into your `PATH`. A complete example looks like the following:
Download the `pixlet` binary from [the latest release][1] and move it into your `PATH`. The latest release
will contain updated commands and fixes so you may want to repeat this install every few months. A complete
example looks like the following:

```bash
# Download the archive.
curl -LO https://github.com/tidbyt/pixlet/releases/download/v0.22.4/pixlet_0.22.4_linux_amd64.tar.gz
curl -LO https://github.com/tidbyt/pixlet/releases/download/v0.33.5/pixlet_0.33.5_linux_amd64.tar.gz

# Unpack the archive.
tar -xvf pixlet_0.22.4_linux_amd64.tar.gz
tar -xvf pixlet_0.33.5_linux_amd64.tar.gz

# Ensure the binary is executable.
chmod +x ./pixlet
Expand Down Expand Up @@ -50,4 +52,4 @@ Click `New` and browse to the newly created Pixlet folder and click ok:
Open a new instance of PowerShell and run `pixlet version`. If all went well, you should see the following:
![windows env 05](img/windows_env_05.png)

[1]: https://github.com/tidbyt/pixlet/releases/latest
[1]: https://github.com/tidbyt/pixlet/releases/latest
Loading