views:

96

answers:

2

How do i install package and libraries of facebook api? When i use import facebook, there's error?

I see only svn checkouts, some files are empty, how do i download and get them working?

+1  A: 

If you don't have git, probably the easiest way to download it is to go to http://github.com/sciyoshi/pyfacebook and click on the "Download source" button. Extract the downloaded ZIP to a subdirectory, enter that subdirectory, launch your Python interpreter and type import facebook. It works for me.

Tamás
+1  A: 

Start with the tutorial, which leads you through the download (with svn or git on Linux or Windows), installation, desktop apps (including a simple session on the interactive Python interpreter), and so on.

Alex Martelli