user2240165
user2240165

Reputation: 53

Remove Heroku completely

Can you tell me how to remove heroku account and apps from computer as well as from their website completely. I want to start from scratch as heroku command-line client is giving me unknown errors, Just tell me the way to remove/uninstall heroku and all its stuff like foreman, git etc etc from my windows.

Upvotes: 4

Views: 12603

Answers (4)

Pablo Marinozi
Pablo Marinozi

Reputation: 19

If you have installed using :

$ sudo snap install --classic heroku

uninstall using :

$ sudo snap remove heroku

Upvotes: 1

Vishal Singh
Vishal Singh

Reputation: 801

If you have installed using :

$ sudo snap install --classic heroku

uninstall using :

$ which heroku
/snap/bin/heroku
$ sudo rm snap/bin/heroku
$ heroku --version
heroku : command not found

Upvotes: 3

Jon Mountjoy
Jon Mountjoy

Reputation: 4525

Also remove all heroku gems, with something like gem uninstall heroku --all

Upvotes: 1

Eric Fode
Eric Fode

Reputation: 3697

To uninstall the tools that the heroku tool belt installed on your computer:

  1. Open start menu
  2. Search for "uninstall"
  3. Click on Uninstall a Program
  4. Uninstall Git, Heroku, Ruby.

Make sure that the configuration files that the tool belt used have been removed by opening "~\", showing hidden files then deleting the folder called .heroku (if it still exists).

Apps can be removed from heroku by going to the site clicking on the app in your app list, going to advanced and pressing delete app.

Upvotes: 3

Related Questions