I downloaded Heroku from Heroku toolbelt using
wget -qO- | shin 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?
13 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- | shOnce it finished installing, I typed heroku apps. see image below for more info.
You can install Heroku on Ubuntu 14.04 or any later version as a snap:
sudo snap install --classic herokuThis 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/binList the content of the current directory with ls. I found this output:
heroku-cli-v6.15.22-3f1c4bd-linux-x64
heroku.tar.gzThis 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/herokuAnd that's it.
2