Fix minimum python version in getting started guide

This commit is contained in:
Andrew Brookins 2021-11-22 14:24:18 -08:00
parent 31323214a9
commit b5bf393f0c

View file

@ -6,15 +6,15 @@ This tutorial will walk you through installing Redis OM, creating your first mod
## Prerequisites
Redis OM requires Python version 3.9 or above and a Redis instance to connect to.
Redis OM requires Python version 3.7 or above and a Redis instance to connect to.
## Python
Make sure you are running **Python version 3.9 or higher**:
Make sure you are running **Python version 3.7 or higher**:
```
python --version
Python 3.9.0
Python 3.7.0
```
If you don't have Python installed, you can download it from [Python.org](https://www.python.org/downloads/), use [Pyenv](https://github.com/pyenv/pyenv), or install Python with your operating system's package manager.