improvement(OMM): Added CurL Command to Easy Install OMM (#2731)

This commit is contained in:
Saket Aryan
2025-05-20 20:18:07 +05:30
committed by GitHub
parent 1786d907f7
commit 70af43c08c
6 changed files with 234 additions and 0 deletions

View File

@@ -6,6 +6,32 @@ iconType: "solid"
<Snippet file="paper-release.mdx" />
## OpenMemory Easy Setup
### Prerequisites
- Docker
- OpenAI API Key
You can quickly run OpenMemory by running the following command:
```bash
curl -sL https://raw.githubusercontent.com/mem0ai/mem0/main/openmemory/run.sh | bash
```
You should set the `OPENAI_API_KEY` as a global environment variable:
```bash
export OPENAI_API_KEY=your_api_key
```
You can also set the `OPENAI_API_KEY` as a parameter to the script:
```bash
curl -sL https://raw.githubusercontent.com/mem0ai/mem0/main/openmemory/run.sh | OPENAI_API_KEY=your_api_key bash
```
This will start the OpenMemory server and the OpenMemory UI. Deleting the container will lead to the deletion of the memory store.
We suggest you follow the instructions below to set up OpenMemory on your local machine, with more persistant memory store.
## Setting Up OpenMemory