You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
redis-py 4.2.x will be the last generation of redis-py to support python 3.6 as it has been [End of Life'd](https://www.python.org/dev/peps/pep-0494/#schedule-last-security-only-release). Async support was introduced in redis-py 4.2.x thanks to [aioredis](https://github.com/aio-libs/aioredis-py), which necessitates this change. We will continue to maintain 3.6 support as long as possible - but the plan is for redis-py version 5+ to officially remove 3.6.
18
+
redis-py 4.3.x will be the last generation of redis-py to support python 3.6 as it has been [End of Life'd](https://www.python.org/dev/peps/pep-0494/#schedule-last-security-only-release). Async support was introduced in redis-py 4.2.x thanks to [aioredis](https://github.com/aio-libs/aioredis-py), which necessitates this change. We will continue to maintain 3.6 support as long as possible - but the plan is for redis-py version 4.4+ to officially remove 3.6.
19
19
20
20
---------------------------
21
21
22
22
## Installation
23
23
24
-
redis-py requires a running Redis server. See [Redis's
25
-
quickstart](https://redis.io/topics/quickstart) for installation
26
-
instructions.
27
-
28
-
redis-py can be installed using pip similar to other
29
-
Python packages. Do not use sudo with pip.
30
-
It is usually good to work in a
31
-
[virtualenv](https://virtualenv.pypa.io/en/latest/) or
32
-
[venv](https://docs.python.org/3/library/venv.html) to avoid conflicts
33
-
with other package managers and Python projects. For a quick
34
-
introduction see [Python Virtual Environments in Five
35
-
Minutes](https://bit.ly/py-env).
36
-
37
24
To install redis-py, simply:
38
25
39
26
```bash
40
27
$ pip install redis
41
28
```
42
29
43
-
or from source:
30
+
Looking for a high-level library to handle object mapping? See [redis-om-python](https://github.com/redis/redis-om-python)!
44
31
45
-
```bash
46
-
$ python setup.py install
32
+
redis-py requires a running Redis server. Assuming you have docker
33
+
```bash
34
+
docker run -p 6379:6379 -it redis/redis-stack-server:latest
47
35
```
48
36
49
-
View the current documentation [here](https://readthedocs.org/projects/redis/).
50
-
51
-
## Contributing
52
-
53
-
Want to contribute a feature, bug fix, or report an issue? Check out
0 commit comments