Created
August 14, 2017 22:45
-
-
Save kogcyc/39087873a8e9a5370376a43020ce1603 to your computer and use it in GitHub Desktop.
how to install the heroku cli on raspberry pi
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
wget https://cli-assets.heroku.com/branches/stable/heroku-linux-arm.tar.gz | |
mkdir -p /usr/local/lib /usr/local/bin | |
sudo tar -xvzf heroku-linux-arm.tar.gz -C /usr/local/lib | |
sudo ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku |
Thanks, it works!
you saved my life thanks!!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank You!