Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,17 @@ pnpm add -g @fission-ai/openspec@latest
yarn global add @fission-ai/openspec@latest
```

### deno

Deno sometimes has issues parsing the @latest tag, so we can specify a version while installing.
If that happens, you could try to change @latest tag with the version, something like `@^1.3.1`
Comment thread
Ardakilic marked this conversation as resolved.

```bash
deno install --global --allow-all npm:@fission-ai/openspec@latest
# or
deno install --global --allow-all npm:@fission-ai/openspec@^1.3.1
```
Comment thread
coderabbitai[bot] marked this conversation as resolved.

### bun

Bun can install OpenSpec globally, but OpenSpec currently runs on Node.js.
Expand Down