# Setup & Guide

### Installation & Setup <a href="#installation-and-setup" id="installation-and-setup"></a>

To use Memorylake, install the required dependencies (ignore Groclake installation if already did) :

```python
pip install groclake
pip install python-dotenv
```

Then, configure Redis in a `.env` file:

```python
REDIS_HOST=localhost
REDIS_PORT=6379
```

### Initializing Memorylake <a href="#initializing-memorylake" id="initializing-memorylake"></a>

```python
from memorylake import Memorylake
memory_lake = Memorylake()
```
