Setting up
How to sign up and install the CLI.
Step 1: Create an account
Go to play.instruqt.com/signup and create an account.
Have your colleagues add you to your company's Instruqt team.
Step 2: Explore the Web UI
For new users, we recommend getting started using our Web UI.
Go to play.instruqt.com
Explore the content from your company's Instruqt team
Step 3: Install the Instruqt CLI (optional)
For advanced, code-first workflows, you can install the Instruqt CLI. The CLI is available on macOS, Windows and Linux, and can be installed using the following methods.
Using a package manager
Open a terminal
Install the CLI using Homebrew
brew install instruqt/tap/instruqtConfirm the Instruqt CLI was installed correctly:
instruqt
Open a PowerShell window
Install the CLI using WinGet:
winget install instruqtClose and re-open the PowerShell window
Confirm the Instruqt CLI was installed correctly:
instruqt
Manually from the latest release
Instruqt CLI releases are published to GitHub. You can download the latest release for your Operating System from https://github.com/instruqt/cli/releases/latest. Refer to the instructions below how to install these for your system.
Open a terminal.
Download the appropriate CLI (Apple Silicon or Intel Macbook, in that order):
curl -L https://github.com/instruqt/cli/releases/latest/download/instruqt-darwin-arm64.zip -o instruqt.zipcurl -L https://github.com/instruqt/cli/releases/latest/download/instruqt-darwin-amd64.zip -o instruqt.zipExtract the CLI binary:
unzip instruqt.zipCopy the binary to your local
bindirectory:sudo cp instruqt /usr/local/binMake the binary executable:
sudo chmod +x /usr/local/bin/instruqtConfirm the Instruqt CLI was installed correctly:
instruqt
Open a PowerShell window.
Copy and paste the following code:
mkdir scripts cd scripts [Environment]::SetEnvironmentVariable("Path", $env:Path + ";$($pwd.Path)", "User") Invoke-WebRequest -Uri https://github.com/instruqt/cli/releases/latest/download/instruqt-windows.zip -OutFile "instruqt.zip" Expand-Archive instruqt.zip -d . rm instruqt.zipClose and re-open your Powershell window to detect the new program.
Enter the following command to check if Instruqt CLI was installed correctly:
instruqt
Open a terminal.
Download the CLI:
curl -L https://github.com/instruqt/cli/releases/latest/download/instruqt-linux.zip -o instruqt.zipExtract the CLI binary:
unzip instruqt.zipCopy the binary to your local
bindirectory:sudo cp instruqt /usr/local/binMake the binary executable:
sudo chmod +x /usr/local/bin/instruqtConfirm the Instruqt CLI was installed correctly:
instruqt
Last updated
Was this helpful?