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/memUor
Install via npx
npx @hexmos/ipm i NevaMind-AI/memUPrerequisites
Python
languageVersion: 3.13+
OpenAI API Key
api_keyPostgreSQL with pgvector
databaseVersion: latest
Docker
containerizationManual 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 installQuick 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.pyQuick Start - Test Continuous Learning (in-memory)
export OPENAI_API_KEY=your_api_key
cd tests
python test_inmemory.pyInstall 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.
