logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt
How to install NevaMind-AI/memU. Official installation instructions. Project installation guide. Framework or library installation. Build installation instructions. How to setup and install from GitHub. Installation steps and setup instructions. Official docs and installation instructions GitHub.

NevaMind-AI/memU Installation Guide

How to install NevaMind-AI/memU. Official project installation instructions and setup guide.

Automated Install (Recommended)

Quick installation instructions for NevaMind-AI/memU. This is the fastest way to complete project installation and setup.

Install via curl

curl -fsSL https://hexmos.com/ipm-install | bash && 
ipm i NevaMind-AI/memU
or

Install via npx

npx @hexmos/ipm i NevaMind-AI/memU

Prerequisites

Python

language

Version: 3.13+

OpenAI API Key

api_key

PostgreSQL with pgvector

database

Version: latest

Docker

containerization

Manual Installation Methods

Manual installation instructions. How to install from GitHub source.

Install via Pip

pip install -e .

Install via Pip (Development)

git clone https://github.com/NevaMind-AI/memU.git

cd memU

make install

Quick Start - Test with Persistent Storage (PostgreSQL)

docker run -d --name memu-postgres -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=memu -p 5432:5432 pgvector/pgvector:pg16

export OPENAI_API_KEY=your_api_key

cd tests

python test_postgres.py

Quick Start - Test Continuous Learning (in-memory)

export OPENAI_API_KEY=your_api_key

cd tests

python test_inmemory.py

Install via Pip (Windows)

pip install -e .

Install via Pip (macOS)

pip install -e .

Install via Pip (Linux)

pip install -e .

Post Installation Steps

  • Ensure Python 3.13+ is installed.
  • Set your OPENAI_API_KEY environment variable.
  • Refer to the examples in the `examples/` directory for usage.