Install on Linux or Mac
(if you need Windows, feel free to request)
## On Linux x86 (Intel/AMD)
curl -O https://repo.binst.io/binst/x86_64-unknown-linux-gnu/stable/binst.tar.gz && \
tar -xvf binst.tar.gz && \
./binst self && \
echo 'source "$HOME/.binst/env"' >> ~/.bashrc && source "$HOME/.binst/env"
## On Linux x86 (ARM-64 / aarch64)
curl -O https://repo.binst.io/binst/aarch64-unknown-linux-gnu/stable/binst.tar.gz && \
tar -xvf binst.tar.gz && \
./binst self && \
echo 'source "$HOME/.binst/env"' >> ~/.bashrc && source "$HOME/.binst/env"
## On Mac Apple Silicon
curl -O https://repo.binst.io/binst/arm64-apple-darwin/stable/binst.tar.gz && \
tar -xvf binst.tar.gz && \
./binst self && \
echo '\nsource "$HOME/.binst/env"' >> ~/.zshenv && source "$HOME/.binst/env"
## On Mac x86 (Intel/AMD)
curl -O https://repo.binst.io/binst/x86_64-apple-darwin/stable/binst.tar.gz && \
tar -xvf binst.tar.gz && \
./binst self && \
echo '\nsource "$HOME/.binst/env"' >> ~/.zshenv && source "$HOME/.binst/env"