Lexi Garcia
Lexi Garcia

Reputation: 21

says my heroku toolbelt was installed, but i cant find the programs

I've installed heroku tool belt about 5 times now and I can't find anything relating to installing it on my computer. What am I doing wrong?

Upvotes: 2

Views: 1857

Answers (2)

cell-in
cell-in

Reputation: 789

You can use the heroku command from your terminal.

Just write heroku login to your terminal, and enter your credentials.

For further information : https://devcenter.heroku.com/articles/getting-started-with-python#set-up

Upvotes: 0

foamcow
foamcow

Reputation: 479

Open Terminal and at the prompt type;

which heroku

You should see something like

/usr/bin/heroku

This will tell you if the program is installed.

To get some help from the program type

heroku help

From here on in you're on your own but I would suggest getting comfortable with the command line and what each of the tools does by referring to the documentation and guides on Heroku's Dev Center. https://devcenter.heroku.com/

Upvotes: 3

Related Questions