How to download and install Heroku?

I downloaded Heroku from Heroku toolbelt using

wget -qO- | sh

in the terminal, which they recommended on their site. My Ubuntu (14.04.1) didn't recognize the -q0-, so I took it out. It then seemed to download fine - I see the in the directory I was in when i downloaded it.

Now, however, it still doesn't recognize heroku as a command. It also won't show me where it is with the 'whereis' command. But when I look in the current directory with ls -a, it shows up. It seems to be there.

How do I install it?

1

3 Answers

Just tried this now on 14.04. Here is how I did it, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, run the command(s) below:

sudo wget -qO- | sh

Once it finished installing, I typed heroku apps. see image below for more info.

enter image description here

1

You can install Heroku on Ubuntu 14.04 or any later version as a snap:

sudo snap install --classic heroku

This is published directly by Heroku. It updates automatically whenever they release a new version.

The more adventurous can install from the edge channel and get updates for every upstream commit:

sudo snap install --classic --edge heroku
1

Configuring Heroku is quite straight-forward on DigitalOcean. After ssh-ing, run the following commands with sudo:

wget -O heroku.tar.gz
tar -xvzf heroku.tar.gz
sudo mkdir -p /usr/local/lib /usr/local/bin

List the content of the current directory with ls. I found this output:

heroku-cli-v6.15.22-3f1c4bd-linux-x64
heroku.tar.gz

This output determines the value in the next step, use the first file name in the next command:

sudo mv heroku-cli-v6.15.22-3f1c4bd-linux-x64 /usr/local/lib/heroku
sudo ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku

And that's it.

2

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like