[Error]: update Heroku client to latest version

I am trying to run this command:

$heroku logs 

I get the following error:

 [Error]: Please update your Heroku client to the most recent version 

Can someone help me solve the problem?

Thanks!

+6
source share
3 answers

You just have an old heroku gem version. Just install the latest from the command line:

 gem install heroku --version 2.3.3 
+9
source

If you just want to update the heroku command line client, you can enter

 heroku update 

on the hero’s command line.

+5
source

Please uninstall the old version of Heroku and install the latest version.

gem install heroku --version 3.30.3

+1
source

Source: https://habr.com/ru/post/891007/


All Articles