RedisGears on jupyter notebooks

Is there a way that RedisGears can be installed directly on a jupyter notebook?

Thanks

@JRedis2020

I am not well versed with jupyter notebook, but using any redis module should be easy once you are able to install Redis in place. install redis in the Jupyter kernel

# Install a pip package in the  Jupyter kernel
import sys
!{sys.executable} -m pip install redis

then build the RedisAI module and load (you can refer here for the commands)

redis-server --loadmodule install-cpu/redisai.so

OR you can simply get start with using Docker as mentioned here

Hope this helps.

You can use this client:

Already done it before, works great on jupytet notebook