'ModuleNotFoundError: No module named 'aioredis'

After installing aioredis it's showing error with module not found. I have instedd aioredis with pip install aioredis still I'm facing this error.

$ pip install aioredis
Requirement already satisfied: aioredis in /home/super/.pyenv/versions/3.9.5/lib/python3.9/site-packages (2.0.1)
Requirement already satisfied: async-timeout in /home/super/.pyenv/versions/3.9.5/lib/python3.9/site-packages (from aioredis) (4.0.2)
Requirement already satisfied: typing-extensions in /home/super/.pyenv/versions/3.9.5/lib/python3.9/site-packages (from aioredis) (4.1.1)

This is my line number 3

import aioredis

Output:

line 3, in import aioredis ModuleNotFoundError: No module named 'aioredis'



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source