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

Move installer out of Other Way to Install #1070

Closed
wants to merge 1 commit into from
Closed
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
13 changes: 6 additions & 7 deletions docs/run/anywhere/terminals.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,7 @@ Installing with [`brew`] is most straight forward:
brew install pkgxdev/made/pkgx
```

# Other Ways to Install

1. After [`brew`] our installer is easiest:
If it is not [`brew`], then our installer is easiest:

```sh
curl -fsS https://pkgx.sh | sh
Expand All @@ -18,9 +16,10 @@ curl -fsS https://pkgx.sh | sh
Wanna read that script before you run it? [github.com/pkgxdev/setup/installer.sh][installer]
{% endhint %}

 

2. `pkgx` is a standalone binary, so (if you want) you can just download it directly:
# Other Ways to Install

1. `pkgx` is a standalone binary, so (if you want) you can just download it directly:

```sh
# download it to `./pkgx`
Expand All @@ -41,14 +40,14 @@ curl -Ssf https://pkgx.sh/$(uname)/$(uname -m).tgz | sudo tar xz -C /usr/local/b

 

3. You can also download straight from [GitHub Releases].
2. You can also download straight from [GitHub Releases].

{% hint style='warning' %}
If you download manually you’ll need to move the binary somewhere in
your `PATH`.
{% endhint %}

4. If you're on Arch Linux (or any of it's derivatives) you can also use the [`pkgx` AUR] (latest released version) or [`pkgx-git` AUR] (latest development version, might not be stable).
3. If you're on Arch Linux (or any of it's derivatives) you can also use the [`pkgx` AUR] (latest released version) or [`pkgx-git` AUR] (latest development version, might not be stable).

{% hint style='warning' %}
The AURs are community-maintained and might be out-of-date. Use them with caution.
Expand Down
Loading