29
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AWS Cloud9でHeroku CLIを使えるようにする

Last updated at Posted at 2018-06-18

AWS Cloud9環境1において、下記のコマンド2を全部コピペして実行するとHeroku CLIが導入できます。

ターミナル
# 全てコピーして一度に実行
$ curl -OL https://cli-assets.heroku.com/heroku-linux-x64.tar.gz
tar zxf heroku-linux-x64.tar.gz && rm -f heroku-linux-x64.tar.gz
sudo mv heroku /usr/local
echo 'PATH=/usr/local/heroku/bin:$PATH' >> $HOME/.bash_profile
source $HOME/.bash_profile > /dev/null

上記コマンド実行後、Heroku CLIの導入に成功している場合は、
$heroku --versionコマンドでバージョン情報が表示されます。

ターミナル
# Heroku CLIの導入に成功している場合はバージョン情報が表示される。
$ heroku --version
heroku/7.0.98 linux-x64 node-v10.4.1
  1. environment作成時に、特にカスタムせずに環境を作っている前提です。

  2. 実行コマンドについては、Rails Tutorialの$ source <(curl -sL https://cdn.learnenough.com/heroku_install)コマンドの中身を参考にしています。

29
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
29
19

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?