새벽코딩

Windows에서 react 환경설정 본문

React

Windows에서 react 환경설정

J 코딩 2020. 12. 28. 06:28
반응형

마이크로소프트에서는 윈도우에서 다양한 패키지를 쉽게 관리할 수 있는 소프트웨어를 제공하고 있다.

https://chocolatey.org/

 

Chocolatey - The package manager for Windows

Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.

chocolatey.org

관리자권한으로 cmd를 실행한 후에 아래 명령어를 입력하여 설치 할 수 있다.

 

@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command "iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"

 

버전확인

 

choco -version
반응형

'React' 카테고리의 다른 글

[React-native] 환경설정 for Mac  (1) 2023.10.30
[React for Windows] 2. react 프로젝트 생성  (0) 2023.08.07
[React for Windows] 1. node.js 설치  (0) 2023.08.07
Comments