heroku: command not found
heroku: command not found
cloud9でコミットプッシュしようとして、以下のようなコマンドを打つとエラーが。
$ git commit -am "Add hello"
$ git push
$ heroku create
エラー内容
heroku: command not found
解決方法
$ wget https://cli-assets.heroku.com/heroku-cli/channels/stable/heroku-cli-linux-x64.tar.gz -O heroku.tar.gz
$ sudo mkdir -p /usr/local/lib/heroku
$ sudo tar --strip-components 1 -zxvf heroku.tar.gz -C /usr/local/lib/heroku
$ sudo ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku
↑のコマンドを打つと、
$ heroku create
$ git push heroku master
コマンドがうまくいき、コミット&herokuにプッシュができました!
参考
Author And Source
この問題について(heroku: command not found), 我々は、より多くの情報をここで見つけました https://qiita.com/jonnyjonnyj1397/items/5321c5d266de8c852fd5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .