LoginSignup
1
3

More than 1 year has passed since last update.

M1 mac book airを購入後インストールしたもの

Posted at

M1 Mac book airを購入したので、購入後すぐにやったこと。ハマったことも一緒に掲載

GUI系ソフトウェアをインストール

GUI系は何の問題もなくインストール完了
公式ページ、App storeからからダウンロードするだけ。
- sequel pro
- google chrome
- VS code
- atom
- sourse tree
- fork
- docker for mac
- adobe(Ai, Ps など)
- Jetbrains(RubyMine)
- slack
- evernote
- monosnap
- goodnote
- xcode
- Dispaly Menu
- Magnet

CUI系ソフトウェア

homebrew

ターミナルの設定を 「Rossetaを使用して開く」 に変更して、インストール、、はNG

NG な方法
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

homebrew公式通りに行う
homebrew公式

mkdir homebrew && curl -L https://github.com/Homebrew/brew/tarball/master | tar xz --strip 1 -C homebrew
~/.zshrc
export PATH=$HOME/.nodebrew/current/bin:$PATH

動作確認
sh
$ brew help

パスを通す

homebrew系のインストール

  • rbenv
$ brew install rbenv
$ brew install mysql@5.7
$ brew services start mysql@5.7
  • redis
$ brew install redis
$ brew services start redis
  • imagemagick
$ brew install imagemagick
  • yarn
$ brew install yarn
  • nodebrew
$ brew install nodebrew

rbenv, Ruby3.0

$ ruby upgrade ruby-build
$ rbenv install 3.0.0

パスを通す

~/.zshrc
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init - zsh)"

AWS CLI 2

$ curl "https://awscli.amazonaws.com/AWSCLIV2.pkg" -o "AWSCLIV2.pkg"
$ sudo installer -pkg AWSCLIV2.pkg -target /

Jupyter Lab

$ pip3 install jupyterlab

※pip3とpython3は標準でインストール済み

yarn

brewでいれると安定版をいれるのがすこしめんどくさいので、npmでインストール

$ node -v
v14.17.0
$ npm install -g yarn
1
3
1

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
3