Closed1

環境構築 fot mac

エインヒャルエインヒャル

XCodeのインストール

ターミナル
$ xcode-select --install

Homerewのインストール

公式サイトに従う

ターミナル
$ /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

gitのインストール

ターミナル
$ brew install git

HackGen-Nerdのインストール

ターミナル
$ brew tap homebrew/cask-fonts
$ brew install font-hackgen-nerd

tmuxのインストール

ターミナル
$ brew install tmux

starshipのインストール

ターミナル
$ brew install starship

neovimのインストール

ターミナル
$ brew install neovim

fishのインストール

ターミナル
$ brew install fish
$ echo /usr/local/bin/fish | sudo tee -a /etc/shells
$ chsh -s /usr/local/bin/fish

Rustのインストール

公式サイトに従う

ターミナル
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Alacritty(ターミナルアプリ)のインストール

ターミナル
$ git clone https://github.com/alacritty/alacritty.git
$ cd alacritty
$ rustup override set stable
$ rustup update stable
$ make app
$ cp -r target/release/osx/Alacritty.app /Applications/

anyenvのインストール

ターミナル
$ brew install anyenv

pyenvのインストール

ターミナル
$ anyenv install pyenv

nodenvのインストール

ターミナル
$ anyenv install nodenv

poetryのインストール

ターミナル
$ curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python

pipxのインストール

ターミナル
$ brew install pipx
このスクラップは2021/02/13にクローズされました