개발을 하다보면 이런저런 소프트웨어를 설치해야할 때가 있다. 우분투 같은 리눅스에서는 apt-get install 을 사용하고, 맥에서는 brew install 같은 명령을 수행하면 쉽게 로컬 머신에 소프트웨어 패키지를 설치할 수 있다.
반면 윈도우의 경우에는 홈페이지에 들어가서 설치 EXE 파일을 다운로드하여 설치를 진행했다. Next 버튼을 눌러가며 설정을 진행하는 과정이 여간 귀찮은 것이 아니었다.
그러다가 윈도우에서 Gradle 을 설치해야할 일이 생겨서 찾아보다가 Scoop 이라는 소프트웨어를 알게되었다. Scoop은 brew, apt-get 같이 명령하나로 쉽게 소프트웨어를 설치할 수 있게 기능을 제공해준다.
홈페이지 이름도 "유닉스"스럽다.
Scoop의 간단한 데모 영상이다.
Scoop을 설치하기 위해서는 윈도우의 파워쉘 3(Powershell 3) 이상 버전이나 .NET Framework 4.5 이상 버전이 설치되어 있어야 한다.
D:\> powershell
Windows PowerShell
Copyright (C) Microsoft Corporation. All rights reserved.
커맨드라인 툴을 열어서 "powershell" 명령을 입력해 파워쉘을 실행시킨다.
D:\> Set-ExecutionPolicy RemoteSigned -scope CurrentUser
에러가 발생할 수도 있으니 위 명령을 실행한다.
D:\> ex (new-object net.webclient).downloadstring('https://get.scoop.sh')
Initializing...
Downloading...
Extracting...
Creating shim...
Adding ~\scoop\shim to your path.
Scoop was installed successfully!
Type 'scoop help' for instructions.
Scoop 설치가 끝났다. 매우 간단하게 설치된다.
이제 연습삼아 Gradle 을 설치해보겠다.
D:\> scoop install gradle
Installing 'gradle' (5.1) [64bit]
gradle-5.1-all.zip (124.6 MB) [====================================================] 100%
Checking hash of gradle-5.1-all.zip ... ok.
Extracting gradle-5.1-all.zip ... done.
Linking ~\scoop\apps\gradle\current => ~\scoop\apps\gradle\5.1
Creating shim for 'gradle'.
'gradle' (5.1) was installed successfully!
"scoop install gradle" 명령하나로 쉽게 gradle 이 설치되었다.
윈도우를 사용할 때에도 이제 마우스에 손이 잘 안가게 될 것 같다.
댓글