Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 1.17 KB

terminals.md

File metadata and controls

54 lines (36 loc) · 1.17 KB

Getting Started

Installing with brew is most straight forward:

brew install pkgxdev/made/pkgx

Other Ways to Install

  1. After brew our installer is easiest:
curl -fsS https://pkgx.sh | sh

{% hint style='info' %} Wanna read that script before you run it? github.com/pkgxdev/setup/installer.sh {% endhint %}

 

  1. pkgx is a standalone binary, so (if you want) you can just download it directly:
# download it to `./pkgx`
curl -o ./pkgx --compressed -f --proto '=https' https://pkgx.sh/$(uname)/$(uname -m)

# install it to `/usr/local/bin/pkgx`
sudo install -m 755 pkgx /usr/local/bin

# check it works
pkgx --help

For your convenience we provide a .tgz so you can one-liner that:

curl -Ssf https://pkgx.sh/$(uname)/$(uname -m).tgz | sudo tar xz -C /usr/local/bin

 

  1. 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 %}