LoginSignup
1
2

More than 5 years have passed since last update.

MacBook Pro 2016 セットアップ 

Last updated at Posted at 2017-01-04

新しく購入したので、セットアップした内容は、ここに記していく。

環境

機種: MacBookPro13
プロセッサ名: Intel Core i5
メモリ:  16 GB
容量: 498.95 GB
OS:  macOS 10.12.2

macOS sierra です。
立ち上げてすぐにOSのアップデートがあったので、元のVERSIONはわからず。

アプリ

  • google chrome
  • firefox
  • evernote
  • slack
  • atom
  • office365

開発系ツール群

  • XCODE
     appstoreから普通に入れた。
  • commmand line developer tool
     gitコマンドを打ったときに、ポップアップが出たので、インストールした。
  • homebrew
$ /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

 と打ったあとに、確認

$ brew -v
Homebrew 1.1.5
Homebrew/homebrew-core (git revision 919e; last commit 2016-12-30)
$ brew cask --version 'このあとインストールが走ったよ。ホントはね。
Homebrew-Cask 1.1.5

  • git
     terminalでgit --versionと打ったら、command line developer toolのインストールを促され、
$ git --version
 xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools.
$ git --version
  git version 2.10.1 (Apple Git-78)

  とりあえずOKなのか?

  • maven
$ brew install maven
  • gradle
  • intellij
  • PyCharm
  • Android Studio

開発言語系

  • Java
    brew cask install java

 インストールが終わったので確認

$ /usr/libexec/java_home -V
Matching Java Virtual Machines (1):
    1.8.0_112, x86_64:  "Java SE 8" /Library/Java/JavaVirtualMachines/jdk1.8.0_112.jdk/Contents/Home

/Library/Java/JavaVirtualMachines/jdk1.8.0_112.jdk/Contents/Home

  JAVA_HOMEの設定

$ vim ~/.bash_profile

  開いて、

export JAVA_HOME=`/usr/libexec/java_home -v 1.8`

  を追記して読み込み確認

$ source ~/.bash_profile 
$ java -version
java version "1.8.0_112"
Java(TM) SE Runtime Environment (build 1.8.0_112-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.112-b16, mixed mode)
  • Python

 とりあえず2系はインストされている

$ python --version
Python 2.7.10
$ which python
/usr/bin/python

3系を入れるかは、これから考える。
*

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