Ansh Day
Ansh Day

Reputation: 51

How to Download Heroku on mac

I have been trying to download Heroku software to upload the rails app I made but every time I try to download it, it says it failed.
And what version of heroku should I be downloading?

Upvotes: 3

Views: 3332

Answers (3)

Kalhara Tennakoon
Kalhara Tennakoon

Reputation: 1482

if you have installed node and npm already, try this

npm install -g heroku

if you're using Homebrew, try this

brew tap heroku/brew && brew install heroku

once the installation is done, issue this to verify whether you've successfully installed Heroku on your Mac

heroku --version

Upvotes: 4

Piyush
Piyush

Reputation: 11

You need to set up your local workstation with the Heroku command-line client and the Git revision control system by installing the Heroku Toolbelt. Check out this link to download Heroku toolbelt.

Upvotes: 1

John
John

Reputation: 13705

Heroku is a hosting service and there is nothing to download. You can sign up at Heroku.com and there are instructions on the site for how to upload your app.

Upvotes: 0

Related Questions