Installed aiohttp ,
aiohttp
pip3 install aiohttp
as mentioned here
With python3.6,
Below I see the error:
import aiohttp ModuleNotFoundError: No module named 'aiohttp'
How do I resolve this error?
This is because yours is pip3 not in python3.6 PYTHONPATH. I always think that the best way to install Python packages using pip is to run it as a script using a parameter -m .
pip3
pip
-m
python3.6 -m pip install aiohttp