Setting6 [MacOS - M1] m1 맥북에 brew 통해 vscode 설치하기 visual studio code 설치 brew install visual-studio-code --cask 최신 homebrew에는 cask가 기본으로 되어 있어서 --cask 명령어는 생략해도 된다고 한다. 설치 완료 참고 : https://minimal-dev.tistory.com/38 2022. 8. 29. [MacOS - M1] m1 맥북에 brew 통해 iterm2 , oh-my-zsh 설치하기 iterm2 설치 https://formulae.brew.sh/cask/iterm2#default 아래 설치 명령어 복사하기 brew install --cask iterm2 command + space 로 Spotlight 실행 후 터미널 실행 터미널에 위에서 복사한 명령어 입력하기 설치 완료 spotlight에서 iterm2 실행 ohmyzsh 설치 https://github.com/ohmyzsh/ohmyzsh iterm 터미널에 입력해 설치 sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)" 설치 완료 powerlevel10k 테마 설치 https://github.com/romka.. 2022. 8. 29. [MacOS - M1] m1 맥북에 homebrew 설치하기 homebrew 홈페이지 접속 https://brew.sh/index_ko 아래 설치 명령어 복사하기 command + space 로 Spotlight 실행 후 터미널 실행 터미널에 위에서 복사한 명령어 입력하기 설치 완료 next step 입력 echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> /Users/seowlee/.zprofile eval "$(/opt/homebrew/bin/brew shellenv)" brew help 로 brew 설치 확인 2022. 8. 29. [Visual Studio Code] VSCode 에서 black과 prettier를 사용한 python formatting setting VSCode 에서 black과 prettier를 사용한 python formatting setting black 설치 pip install black cmd + , 로 setting 열기 formatting provider 검색 black 선택 python format on save 체크 cmd + shift + p 로 settings.json 열기 settings.json 추가 { "python.formatting.provider": "black", "python.linting.pylintEnabled": true, "python.linting.enabled": true, "[python]": { "editor.defaultFormatter": "ms-python.python", "editor.form.. 2022. 8. 28. 이전 1 2 다음