React
Windows에서 react 환경설정
J 코딩
2020. 12. 28. 06:28
반응형
마이크로소프트에서는 윈도우에서 다양한 패키지를 쉽게 관리할 수 있는 소프트웨어를 제공하고 있다.
- Chocolatey : 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
반응형