Search code examples
pythonredisredisgraph

ModuleNotFoundError: No module named 'redisgraph'


I am running into an error while importing redisgraph in python but import redis is working fine.

enter image description here


Solution

  • You need to install redisgraph pip package. Do this in your terminal

    pip install redisgraph
    

    source