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

HomebrewをAWSCloud9に導入する手順

Last updated at Posted at 2019-04-14

HomebrewをAWSCloud9に導入する手順

ネット上で記事を探していると、下記のような記事がおそらく一番に見つかると思う。
※2019年4月14日時点※
https://qiita.com/fagai/items/0872536c46a91f429bbd

しかしながら、現時点ではこの方法はすんなりいかない。
コマンドに打ち込むと、最新のものを導入する手順をターミナルで教えてはくれるが、
備忘録のため、そしてこれからプログラミングを始める人のためにこの記事を残す。

簡単に言えばこのURLを参照してください

タイトルにもある通り、簡単に言えば、下記のようなURLに行けば良い。

が、いちいちURLにまた飛ぶのはめんどうなので、この記事にも記載する。

(1)下記のコマンドを打ち込む

$ sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"

###(2)PATHを通す

test -d ~/.linuxbrew && eval $(~/.linuxbrew/bin/brew shellenv)
test -d /home/linuxbrew/.linuxbrew && eval $(/home/linuxbrew/.linuxbrew/bin/brew shellenv)
test -r ~/.bash_profile && echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.bash_profile
echo "eval \$($(brew --prefix)/bin/brew shellenv)" >>~/.profile

(3)完了

brew install hello
4
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
4
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?