🍎
macOS環境構築について
Xcode Command Line Tools
xcode-select --install
Homebrew
brew install wget
設定チェック
brew doctor
パッケージ定義を最新化
brew list
brew update
VSCode, Chrome, iterm2, slack
-
caskの定義の中で、VSCodeの実行ファイルに対するシンボリックリンクが自動で作成される - そのため、
Command PaletteからShell Command: Install code in PATHを実行しなくても、codeコマンドが使用できる
brew install --cask visual-studio-code
brew install --cask google-chrome
brew install --cask iterm2
brew install --cask slack
brew install --cask alt-tab
brew install --cask elmedia-player
ohmyzsh
Git
- Homebrewからインストールしたgitを使う
brew install git
which git
/usr/bin/git --version
/usr/local/bin/git --version
/opt/homebrew/bin/git --version
GitHub
- GitHubへSSHできるようにする
ssh -T git@github.com
GitHub CLI
brew install gh
nvm, npm, node
brew install nvm
nvm install --lts
nvm ls
nvm --version
npm --version
node --version
uv
curl -LsSf https://astral.sh/uv/install.sh | sh
poppler
brew install poppler
hugo
brew install hugo
Rust
cmake, ffmpeg
brew install cmake
brew install ffmpeg
Discussion