You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> **Note:** The install script auto-detects non-interactive environments (CI, piped input, coding agents) and skips the interactive setup wizard. You can also explicitly skip it with `BASECAMP_SKIP_SETUP=1`.
> **Note:** The install scripts auto-detect non-interactive environments (CI, piped input, coding agents) and skip the interactive setup wizard. You can also explicitly skip it with `BASECAMP_SKIP_SETUP=1`.
32
+
>
33
+
> **Windows note:** if `curl` fails with a `schannel` / `CRYPT_E_NO_REVOCATION_CHECK` TLS error, prefer the PowerShell installer, Scoop, or Git Bash's `/usr/bin/curl` instead of the system `curl.exe`.
Arm64: substitute `arm64` for `amd64` in the filename. Verify the SHA-256 checksum from `checksums.txt` before installing unsigned Alpine packages.
48
61
49
-
### Option D: Nix
62
+
### Option E: Nix
50
63
```bash
51
64
nix profile install github:basecamp/basecamp-cli
52
65
```
53
66
54
-
### Option E: Go install
67
+
### Option F: Go install
55
68
```bash
56
69
go install github.com/basecamp/basecamp-cli/cmd/basecamp@latest
57
70
```
58
71
59
-
### Option F: GitHub Release
72
+
### Option G: GitHub Release
60
73
Download the archive for your platform from [Releases](https://github.com/basecamp/basecamp-cli/releases), extract, and move `basecamp` to a directory on your PATH.
61
74
62
75
**Verify:**
@@ -65,9 +78,10 @@ basecamp --version
65
78
# Expected: basecamp version X.Y.Z
66
79
```
67
80
68
-
If `basecamp: command not found`, add to PATH:
81
+
If `basecamp: command not found`, add it to PATH:
69
82
```bash
70
-
export PATH="$HOME/.local/bin:$PATH"
83
+
export PATH="$HOME/.local/bin:$PATH"# macOS / Linux / WSL
84
+
export PATH="$HOME/bin:$PATH"# Git Bash / Windows bash environments
0 commit comments