0
0

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.

【Mac強化計画 #1】Homebrewをインストールしよう

Last updated at Posted at 2020-03-21

Homebrew

Homebrewはエンジニアだけでなく、WEBデザイナーにとっても必須ツールです。

今回は、まだHomebrewをインストールしていないWEBデザイナーのために、Homebrewの導入についての解説をして行きたいと思います。

その前にXcodeはインストールしてますか?

HomebrewはGitとRubyで動いているため、それらがインストールされている必要があります。
Macの場合、Command Line Tools for Xcodeをインストールすることで、その環境を簡単に構築することができます。

shell
$ xcode-select --install

よく、Command Line Tools for Xcodeさえインストールすれば問題ないという記事を見かけますが、WEBデザイナーに限って言えばXcode本体もインストールしておいた方が良いと思います。

Xcodeをインストールしておけば、iOSデバイスのエミュレータが使えるようになるので、各種iOSデバイスでの表示確認がデスクトップ上でできるようになります。

Mac App StoreからXcodeをダウンロード

Homebrewのインストール

Homebrewのサイトにアクセスし、インストールの下に書いてあるコードをターミナルにコピペします。

shell
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"

インストールの確認

ターミナルの画面が止まったら、以下を入力します。

shell
$ brew -v  
Homebrew 2.2.6

バージョンが表示されればインストール成功しています。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?