AWS Cloud9 でインストール翌日に heroku がみつからない
Rails チュートリアルを始めて2日目。
第3章
後でproduction環境にプッシュするときに悩まずに済むよう、アプリをなるべく早い段階でHerokuにデプロイしておくとよいでしょう。
という記載に従い
$ heroku create
したら、
bash: heroku: command not found
と言われてしまった。
PATH 設定が読み込まれていないので
$ source ~/.profile
でOK。
$ echo $PATH
/usr/local/heroku/bin:...
~/.profile は ~/.bash_profile があると読み込まれないので、~/.bash_profile に追記しておいた。
.bash_profile
if [ -f ~/.profile ]; then
source ~/.profile
fi
Author And Source
この問題について(AWS Cloud9 でインストール翌日に heroku がみつからない), 我々は、より多くの情報をここで見つけました https://qiita.com/ifbun/items/726d173901d2fc9ed4bb著者帰属:元の著者の情報は、元の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 .