3
2

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 3 years have passed since last update.

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

Last updated at Posted at 2019-07-08

:point_up:からダウンロード.

Other installation methodsのリンクからページに移動.

$ cd ~/environment/で移動してからやるとよい)

TarballsのLinux(x64)のリンクアドレスをコピー.

$ curl -OL "(URL)を貼る"

ダウンロード、スタート.
.
.
.
.
.
.
##Heroku CLIのインストール.

$tar zxf heroku-linux-x64.tar.gz
$ sudo mv heroku /usr/local/

(確認)
$ ls /usr/local/heroku/ 

$echo 'PATH=/usr/local/heroku/bin:$PATH' >> $HOME/.bash_profile
$source $HOME/.bash_profile > /dev/null

##最後に確認

$ heroku -v

バージョンが表示されたらOK!
.
.
.
.
.
.

####終わったら消す!

$ rm -f heroku-linux-x64.tar.gz

####これで完了.

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?