Fix minimum python version in getting started guide
This commit is contained in:
parent
31323214a9
commit
b5bf393f0c
1 changed files with 3 additions and 3 deletions
|
@ -6,15 +6,15 @@ This tutorial will walk you through installing Redis OM, creating your first mod
|
||||||
|
|
||||||
## Prerequisites
|
## 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
|
## 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 --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.
|
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.
|
||||||
|
|
Loading…
Reference in a new issue