Software Development

윈도우 개발환경 세팅

DrumRobot 2023. 9. 13. 10:38
반응형

WSL 설치

Ubuntu 설치

  • Powershell에서 wsl --install 명령어로 설치 가능

Ubuntu에 Node.js 설치

curl -sL "https://deb.nodesource.com/setup_lts.x" | sudo -E bash -
sudo apt-get install -y nodejs # 패키지 매니저 npm이 같이 설치됨
node --version # 버전 확인
반응형