What you will learn Two prerequisites and how to install and verify each. Get stuck here and you cannot move on.
If Node.js or the terminal are new to you, start with Programs and languages and The terminal and commands.
| Prerequisite | Why it is needed |
|---|---|
| Claude Code | what HyperTeams directs |
| Node.js | what HyperTeams runs on |
Paste into a terminal (macOS/Linux) or PowerShell (Windows).
After installing, run it once and log in.
It walks you through the login. This matters because HyperTeams uses this login directly. Log in here and you will never need to enter a key into HyperTeams.
A version number means you are ready.
If you get
command not found, the terminal that was already open when you installed has not picked up the change. Open a new terminal window and try again.
Get the LTS version from nodejs.org. LTS means "long term support" and is the stable line.
Run the installer and accept the defaults.
Run both commands together; if both print a version you can move on.
Nine times out of ten, opening a new terminal fixes it. The installer changes your path settings, and an already-open terminal does not know about the change.
If that does not work, restart the computer.
PowerShell's security settings. Open PowerShell as administrator and try again, or if it is a work machine, ask your IT team.
You will need help from IT. When asking, explain it like this:
"I need Node.js LTS and the Claude Code CLI installed. Both are development tools, distributed officially from nodejs.org and claude.ai."
That is unrelated to HyperTeams. You have to resolve Claude Code's own login first.
1. Why do you not need to enter an API key into HyperTeams?
Because it uses your Claude Code login directly. That is why running claude
once after installing, to log in, is an important step.
2. What should you try first when you see command not found?
Open a new terminal window. The install changes your path settings and an already-open terminal does not know about it.
3. What command confirms you can move on?
claude --version && node --version — if both print a version, you are ready.
With that ready, installing is one line → Installing
# macOS / Linuxcurl -fsSL https://claude.ai/install.sh | bash# Windows PowerShellirm https://claude.ai/install.ps1 | iexclaudeclaude --version✓ 2.x.x → good✗ command not found → not installed, or you need a fresh terminalnode --version✓ v20.x.x or higher → good✗ command not found → open a new terminal after installingclaude --version && node --version