urllib3 (1.22) or chardet (2.2.1) doesn’t match a supported version! RequestsDependencyWarning)
1 min readFeb 6, 2018
I’m getting this error when running ‘import request’ on Python 2.7.12 on Ubuntu 16.04.3 LTS. The error is the next:
“… urllib3 (1.22) or chardet (2.2.1) doesn’t match a supported version! RequestsDependencyWarning) ..”
The solution for me was this:
$ sudo pip uninstall requests
$ sudo pip install requests
$ sudo pip uninstall docopt
$ sudo pip install docopt
Au revoir :)