From b5bf393f0c4de209422a6ec6fc79e27e6f96bec0 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Mon, 22 Nov 2021 14:24:18 -0800 Subject: [PATCH] Fix minimum python version in getting started guide --- docs/getting_started.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/getting_started.md b/docs/getting_started.md index de69f9d..9450463 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -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.