Skip to content

Commit 66cb4d0

Browse files
committed
Use semantic BM install with Intel macOS onnxruntime pin
1 parent fe84725 commit 66cb4d0

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,10 @@ For a practical runbook, see [Memory + Task Flow](./MEMORY_TASK_FLOW.md).
1919
- `bm tool read-note --strip-frontmatter`
2020
- `bm tool edit-note --format json`
2121
```bash
22-
pip install basic-memory
23-
# or with uv:
24-
uv pip install basic-memory
22+
uv tool install 'basic-memory[semantic]' --with 'onnxruntime<1.24; platform_system == "Darwin" and platform_machine == "x86_64"'
23+
24+
# Alternative (inside an existing Python environment):
25+
uv pip install 'basic-memory[semantic]' 'onnxruntime<1.24; platform_system == "Darwin" and platform_machine == "x86_64"'
2526
```
2627

2728
2. **OpenClaw** with plugin support

justfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Install dependencies
44
install:
55
bun install
6+
uv tool install 'basic-memory[semantic]' --with 'onnxruntime<1.24; platform_system == "Darwin" and platform_machine == "x86_64"'
67

78
# Setup Basic Memory project
89
setup:

0 commit comments

Comments
 (0)