Skip to content

Instantly share code, notes, and snippets.

View brantonb's full-sized avatar

Branton Boehm brantonb

View GitHub Profile
@stanbar
stanbar / install_keybase_rpi.sh
Last active September 15, 2023 00:09
Keybase Raspberry Pi Raspbian installator
echo go get keybase && \
go get github.com/keybase/client/go/keybase && \
echo go build keybase && \
go build -tags production github.com/keybase/client/go/keybase && \
sudo mv keybase /usr/bin/ && \
echo go build kbfsfuse && \
go build -tags production github.com/keybase/client/go/kbfs/kbfsfuse && \
sudo mv kbfsfuse /usr/bin/ && \