How to fix ModuleNotFoundError: No module named 'aiohttp'

ModuleNotFoundError: No module named 'aiohttp'
For web development, always isolate your dependencies in a virtual environment.
Using Docker? Ensure you add `aiohttp` to your `requirements.txt` and rebuild the container.
python -m pip install aiohttp

Verification

Command
python -c "import aiohttp; print(aiohttp.__version__)"
Expected output
Success! aiohttp version x.y.z (e.g., 2.4.0)