Try:
python3 -m pip install requests-html==0.10.0
python3 -m pip install requests-html==0.10.0
Collecting requests-html==0.10.0
ERROR: Could not find a version that satisfies the requirement requests-html==0.10.0 (from versions: 0.0.1, 0.1.0, 0.1.1, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6)
ERROR: No matching distribution found for requests-html==0.10.0
Did you upgrade pip3 outside of your distributions package manager (i.e. using pip3 --upgrade) ?
That's not really recommended.
That's what it told me to do, and indeed I did that.
If you however still want to use the up-do-date (and not supported by your OS) version of pip, try it with the following command:
python3 -m pip install -r requirements.txt
python3 -m pip install -r requirements.txt
Collecting requests-html==0.10.0 (from -r requirements.txt (line 1))
ERROR: Could not find a version that satisfies the requirement requests-html==0.10.0 (from -r requirements.txt (line 1)) (from versions: 0.0.1, 0.1.0, 0.1.1, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.4.0, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6)
ERROR: No matching distribution found for requests-html==0.10.0 (from -r requirements.txt (line 1))
I didn't intend to do it outside my package manager though.