I was trying to install a package from pip but I have gotten that message:
RuntimeError: aiohttp requires Python 3.4.2+
I have installed python 3.64 but it still gives me that error Thanks!
I was trying to install a package from pip but I have gotten that message:
RuntimeError: aiohttp requires Python 3.4.2+
I have installed python 3.64 but it still gives me that error Thanks!
To make sure to use the pip version that comes with your python version use:
python -m pip install aiohttp
or
python3 -m pip install aiohttp
That is what -m
does:
-m mod : run library module as a script (terminates option list)
You should check your Python version first:
python --version
Python 3.6.4