[Answered ]-Trying to install python-social-auth, get ImportError: No module named 'requests.packages'

1👍

I solved my own problem.

sudo pip3 install requests --upgrade

Fixed it by upgrading my system’s “requests” package.

1👍

this question may be getting a bunch of new visitors…

requests.packages has been removed from requests:
https://github.com/kennethreitz/requests/pull/4067

install the vendored libraries separately


pip install urllib3

Leave a comment