Comment on page
pkgx & Terminals
brew install pkgxdev/made/pkgx
- 1.After
brew
our installer is easiest:
curl -fsS https://pkgx.sh | sh
- 2.
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
- 3.
If you download manually you’ll need to move the binary somewhere in your
PATH
.Last modified 2mo ago