Macbook Settings

codelab·2024년 6월 10일
0

Dev

목록 보기
9/9

맥북을 쓴지(산지) 2년만에 시스템 쪽에 차지하는 용량이 많아져서 초기화 후 다시 설정하는 기록입니다.

일단 터미널 설정을 하고 옵니다.

Install Dev-Tools

brew install --cask visual-studio-code docker notion google-chrome termius postman

# node.js
brew install nvm # 노드 버전 관리자
nvm install 22 

# git
brew install git
brew link git
# brew unlink git && brew link git

# Python
brew install pyenv django-completion pipx
pyenv install 3.12 
python --version
pyenv global 3.12.5
which python # /Users/codelab/.pyenv/shims/python
pipx ensurepath

Optional

# java
brew install --cask intellij-idea


# Poetry
# https://python-poetry.org #가상환경 및 종속성 관리자
pipx install poetry
poetry --version # Poetry (version 1.8.3)

# 기타
brew install --cask onedrive commander-one dbeaver-community chatgpt postman utm 

# App store
Pixea, Brother iPrint&Scan, Friendly Streaming, microsoft 365

각각 .zhrsh 등에 설정 추가 (설치 후 안내 참조)

Set Keys

각종 key들은 백업 후 다시 사용하면 되지만 혹시 없어졌을 때를 대비하여
남깁니다.

# ssh-keygen -t ed25519 -C "이메일"
ssh-keygen -t ed25519 -C "master@code-lab.kr"
# /Users/codelab/.ssh/codelab
# /Users/codelab/.ssh/codelab.pub

eval "$(ssh-agent -s)"
ssh-add --apple-use-keychain ~/.ssh/codelab

# git config --global user.name "사용자 이름"
# git config --global user.email "이메일@example.com"
git config --global user.name "codelab-kr"
git config --global user.email "master@code-lab.kr"

cat  ~/.ssh/codelab.pub | pbcopy
# https://github.com/settings/keys 에 codelab.pub 등록
profile
Think about a better architecture

0개의 댓글