참고 : https://www.lesstif.com/pages/viewpage.action?pageId=30277941

Chocolatey  는 Mac OS X 의 Homebrew 나 Linux 의 yum, apt-get 같은 역할을 수행하는 NuGet 기반의 윈도우용 패키지 관리자이다.

 

설치

cmd.exe 를 열고 다음 명령어 실행

@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin

또는 powershell 을 실행한 후에 파워쉘 프롬프트에서 설치 명령어 입력

iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))

 

다른 경로에 설치할 경우 ChocolateyInstall 환경 변수에 설치할 폴더를 지정하고 수동으로 폴더 생성

set ChocolateyInstall=d:\devel\choco

 

패키지 검색/목록 보기

https://chocolatey.org/packages 에서 패키지 검색하거나 cmd 에서 다음 명령어 입력

choco search nodejs

 

list

전체 패키지 목록

choco list

 

로컬에 설치된 패키지

choco list --local-only

 

info

패키지에 대한 자세한 정보를 보려면 search 에 아래 옵션 추가

choco search <pkgname> --exact --detailed

또는 위 명령의 축약어인 info 명령어 사용

choco info nodejs

 

설치

choco install nodejs

삭제

choco uninstall nodejs

 

Ref


+ Recent posts