Last active
October 17, 2021 22:16
-
-
Save pcgeek86/ea3eacde59ee8c8f5567d9648df69660 to your computer and use it in GitHub Desktop.
Install Balena CLI on Debian / Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Trevor Sullivan <[email protected]> | |
export VERSION='v9.12.0' | |
export FILENAME="balena-cli-$VERSION-linux-x64" | |
export URL="https://github.com/balena-io/balena-cli/releases/download/$VERSION/$FILENAME.zip" | |
sudo apt update | |
sudo apt install httpie unzip --yes | |
cd $HOME | |
http --download $URL | |
unzip $FILENAME.zip | |
sudo rm /usr/local/bin/balena | |
sudo ln -s $HOME/balena-cli/balena /usr/local/bin/balena |
Your version VERSION='v9.12.0' is a bit out dated, isn't it?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks pcgeek85, I had to use Linux and the above code to connect as windows 10 didn't work.