1
1

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をインストール

Last updated at Posted at 2018-11-19
パッケージ管理のHomebrewをインストールします。

1.下準備

ターミナル
xcode-select --install
xcode-select -v
java -version
/usr/libexec/java_home -v

2.インストール

ターミナル
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
brew -v
brew doctor

3.bundleファイルの作成

ターミナル
vi ~/Brewfile

4.Brewfileの内容

~/Brewfile
cask_args appdir: '/Applications'
tap 'caskroom/cask'

brew 'curl'
brew 'mas'

brew 'ghq'
brew 'peco'
brew 'gist'
brew 'git'
brew 'hub'
brew 'tig'
brew 'jq'

brew 'openssl'
brew 'rmtrash'
brew 'sshrc'
brew 'telnet'
brew 'htop'
brew 'tree'

brew 'hugo'

cask 'appcleaner'
cask 'tunnelblick'
cask 'wireshark'
cask 'docker'
cask 'github'
cask 'google-chrome'
cask 'grandperspective'
cask 'gyazo'
cask 'iterm2'

cask 'ngrok'
cask 'paw'
cask 'postico'
cask 'sequel-pro'
cask 'visual-studio-code'
cask 'vlc'
cask 'android-file-transfer'
cask 'java'
cask 'android-sdk'
cask 'android-platform-tools'
cask 'android-studio'

mas 'AdBlock', id: 1402042596
mas 'Skitch', id: 425955336
mas 'CotEditor', id: 1024640650
mas 'ForkLift', id: 412448059
mas 'TLOB', id: 1229885630
mas 'Copy Cat', id: 1386360007
mas 'iHex', id: 909566003
mas 'Configurator 2', id: 1037126344

5.update

ターミナル
brew update
brew upgrade
brew bundle install
1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?