Files
claude-mem/INSTALL.md
T
thedotmack 4da61a77c7 Initial release v3.3.8
- Hook system for customization
- Documentation and installation scripts
- Multi-platform support via GitHub releases
- Binaries available for Windows, Linux (x64/ARM64), macOS (Intel/Apple Silicon)

Generated with Claude Code via Happy
2025-09-06 19:41:36 +00:00

1.4 KiB

Installation Guide

Via NPM

npm install -g claude-mem

Via curl

curl -fsSL https://raw.githubusercontent.com/thedotmack/claude-mem/main/install.sh | bash

Manual Installation

  1. Download the appropriate binary for your platform from Releases:

    • Windows: claude-mem.exe
    • Linux x64: claude-mem-linux
    • Linux ARM64: claude-mem-linux-arm64
    • macOS Intel: claude-mem-macos-x64
    • macOS Apple Silicon: claude-mem-macos-arm64
  2. Make it executable (Unix-based systems):

    chmod +x claude-mem-*
    
  3. Move to your PATH:

    sudo mv claude-mem-* /usr/local/bin/claude-mem
    

After Installation

Once the binary is installed, set up Claude Code integration:

claude-mem install

This will:

  • Install the Chroma MCP server
  • Configure Claude Code hooks
  • Set up the memory system

Platform Detection

The claude-mem command automatically detects your platform and runs the correct binary. No manual selection needed!

Troubleshooting

If you get a "command not found" error:

  1. Ensure the binary is in your PATH
  2. Try running with full path: ./claude-mem
  3. Check binary permissions: ls -la claude-mem*

For other issues, please check our Issues page.