INSTALL / v0.2.0

One binary.
No runtime.

Memoree supports Apple Silicon and Intel macOS, plus x86_64 and ARM64 Linux. Windows support is not advertised until its local transport has native parity.

RECOMMENDEDmacOS · Linux
curl --proto '=https' --tlsv1.2 -sfL https://memoree.dev/install.sh | sh

The stable wrapper selects the matching versioned archive through memoree.dev, verifies its published SHA-256 checksum, and writes to $CARGO_HOME/bin or ~/.local/bin. Public GitHub Releases provide the immutable artifact origin. The installer never starts a service or uses sudo.

Inspect before running

curl -sfL https://memoree.dev/install.sh -o install-memoree.sh
less install-memoree.sh
sh install-memoree.sh

Choose a destination

MEMOREE_INSTALL_DIR="$HOME/bin" \
  sh install-memoree.sh

Pin or upgrade

MEMOREE_VERSION=v0.2.0 \
  sh install-memoree.sh

Rerun the installer without a version to install the current release. There is no background update check.

Build from public source

cargo install --locked --git \
  https://github.com/devcited/memoree \
  --tag v0.2.0

Requires Rust 1.94 or newer. Memoree is not published to crates.io.

Initialize a project

cd /path/to/project
memoree init --name my-project
memoree context show
Continue to the documentation →