Skip to content Skip to sidebar Skip to footer

How Do I Resolve Django Allauth - 'connection Aborted.', Error(13, 'permission Denied') Error?

I'm trying to resolve a connection error thrown by AllAuth/Django 1.7 running on Google App Engine: I believe the error may be in the Sessions configuration but I've not been able

Solution 1:

After doing some research, it seems AppEngine's problems were related to my installed version of requests.

I resolved this by pip uninstall requests (2.5.1), then pip install requests==2.3.

Source

Post a Comment for "How Do I Resolve Django Allauth - 'connection Aborted.', Error(13, 'permission Denied') Error?"