Search code examples
pythonpython-3.xurllib3

Unable to import urllib3 in python 3.5


I am using python 3.5.2.

When I try to install urllib3, I am getting the below error:

ImportError: No module named 'urllib3'

Solution

  • urllib3 is not a default module.

    Install it using:

    pip install urllib3
    

    References:

    1. https://urllib3.readthedocs.io/en/latest/