# vuepress 블로그 세팅 가이드

🎉 노트북 포맷기념 수정 🎉

  1. VsCode 설치 https://code.visualstudio.com/ (opens new window)

  2. 관리자 권한 powershell 에서 명령어 입력 : git 설치 winget install --id Git.Git -e --source winget

  3. git config --global user.name "leekyounghwa"
    git config --global user.email "rudghk5220@gmail.com"
    
    1
    2
  4. chocolatey 설치

     Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
    
    1
  5. choco 사용 nvm 설치, node 16 설치

    choco install nvm
    nvm install 16
    nvm use 16.20.2
    
    1
    2
    3
  6. powershell, vscode 껏다 키기

  7. VsCode 확장프로그램 Vue, Git Graph 설치

  8. git clone https://github.com/LEEKYOUNGHWA/LEEKYOUNGHWA.github.io.git

  9. npm i

  10. npm run dev

WARNING