Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So I downloaded the app with easy_install and it worked. I can import registration.

BUT the code installed doesn't match the source code for the project, as seen in github. For example, I'm missing the modules backends.urls and tests. I'm also missing key files like auth_urls. Without these modules, the registration app is failing on me.

Could this be related to my directory structure?

My Ubuntu distribution has placed all my python files in /usr/local/lib/python2.6/dist-packages/

as opposed to /usr/local/lib/python2.6/site-packages/

Otherwise, I'm stumped here.

share|improve this question

2 Answers

up vote 2 down vote accepted

The easy_install version was really out of date last time I tried.

You'll need to either download the source and run python setup.py install from the extracted directory or checkout from the Git repo and run the same command.

share|improve this answer
thanks Evan, I'll give that a shot – Ben Feb 4 '11 at 16:02

I guess that easy_install installing 0.7 version. But in a github you can see 0.8 alpha

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.