CodeCatz / TrackCat

A tool for tracking the progress of the kittens (and cat{s,z}) in our CodeCatz meetup group
MIT License
5 stars 14 forks source link

Issue 118 #119

Closed anuschka closed 9 years ago

anuschka commented 9 years ago

To install Django social auth I did the following:

sudo pip install django-social-auth export PYTHONPATH=$PYTHONPATH:$(pwd)/django-social-auth/

To configure it I made modifications to settings.py and urls.py.

The error I am getting is:

ImportError at /

cannot import name User

Request Method: GET Request URL: http://127.0.0.1:8000/ Django Version: 1.7.1 Exception Type: ImportError Exception Value:

cannot import name User

Exception Location: /home/asustic/TrackCat/TrackCat/urls.py in , line 3

ercchy commented 9 years ago

I do not understand exactly why are you installing the social auth app globally? This is why we are having the virtualenv so we can install all the dependencies into that virtualenv and not have to trash the global environment of the computer.

And your error is telling you you have nothing named User. Did you set the User properly in settings?

goranche commented 9 years ago

you made this PR from the same branch as you did #114 so you are actually trying to merge the same changes here...

hm... or not... but the same commits are showing up :thought_balloon: have to check a bit more

ok, you probably made branch issue-118 from branch issue-55, which results in this... I'm sorry, but I recommend closing this PR because of this