Python ImportError: cannot import name utils
Check if Requests requirements are satisfied:
$ pip show requests
...
Requires: certifi, idna, chardet, urllib3
I hit the same error but I was missing idna
. After installing it the issue resolved.
Well, after pip uninstall requests
and reinstalling, it no longer would work at all. Luckily, dnf install python-requests
fixed the whole thing...