Linux
Install or Upgrade
- Download and install the hoop binary
plain textcurl -s -L https://releases.hoop.dev/release/install-cli.sh | sh
MacOS
MacOS users have the option to use the brew package manager.
shellbrew tap hoophq/hoopcli https://github.com/hoophq/hoopcli brew install hoop
To upgrade it
shellbrew upgrade hoop
Windows
- Download the latest release of hoop command line for your architecture (usually hoop-windows-amd64) and save in the Downloads folder
- Extract the file using winrar or winzip
- Move the extracted file
hoop.exe
to the folderC:\Windows\System32\
- Open a terminal session and type
hoop version
, if it show the version of program it’s installed with success.
Run this script in the command prompt to automate steps 2 through 4:
powershell# enter in the Downloads folder cd $HOME/Downloads # change <FILE> with the name of the downloaded file tar -xf <FILE> # move the extracted file to C:\Windows\System32 mv hoop.exe C:\Windows\System32 # check if it's working hoop version
Windows WSL
Install hoop on Windows with WSL
- Install the Windows Terminal https://aka.ms/terminal
- Install Ubuntu WSL https://ubuntu.com/wsl
- Open the Windows Terminal App
- Install and open the Ubuntu typing
ubuntu
. It should prompt to create a user in the first time
powershellPS C:\Users\san> ubuntu san@DESKTOP-BBQAAEG:~$
- Gain root access
shellsudo su -
- Download and install/upgrade the hoop command line
shellcurl -s -L https://releases.hoop.dev/release/install-cli.sh | sh