Tried installing urllib.request module using below command
sudo pip install urllib.request
but it returned
Downloading/unpacking urllib.request
Could not find any downloads that satisfy the requirement urllib.request
Cleaning up...
No distributions at all found for urllib.request
Storing debug log for failure in /home/mounarajan/.pip/pip.log
How can I install this module?
urllib
-- i.e.,sudo pip install urllib
. does that not includerequest
? – Athertonsudo pip install urllib3
? would that get you what you want? – Athertonpip
compatible with python 3? – Atherton