# Install RedisVL

```json metadata
{
  "title": "Install RedisVL",
  "description": "",
  "categories": null,
  "tableOfContents": {"sections":[{"id":"installation","title":"Installation"}]}

,
  "codeExamples": []
}
```## Installation

Install the `redisvl` package into your Python (>=3.8) environment using the `pip` command:

```shell
pip install redisvl
```

Then make sure to have a Redis instance with the Redis Query Engine features enabled on Redis Cloud or locally in docker with Redis Stack:

```shell
docker run -d --name redis -p 6379:6379 -p 8001:8001 redis/redis-stack:latest
```

After running the previous command, the Redis Insight GUI will be available at http://localhost:8001.

