RobVerheyen
RobVerheyen

Reputation: 435

Modules missing from installed package

I have installed and am trying to use fbconsole: https://github.com/facebook/fbconsole/

Looking at the instructions, I can make the first couple of steps work:

import fbconsole

fbconsole.AUTH_SCOPE = ['publish_stream', 'publish_checkins']
fbconsole.authenticate()

But when I try

fbconsole.logout()

I get

AttributeError: 'module' object has no attribute 'logout'

Looking at the file that's being installed, I do see both the authenticate() and the logout() module. Is the package not being installed correctly?

Upvotes: 0

Views: 108

Answers (2)

atupal
atupal

Reputation: 17210

Is there same name with fbconsole.py or python package fbconsole in your python path?
If so then:

import fbconsole
print fbconsole.__file__
print dir(fbconsole)  # look if the logout in the fcconsole module

then watch the file of the fbconsole module you import is what,

If not , you can atempte to remove the fbconsole.pyc in your python path(just use the same above code) and looks is it works.

Upvotes: 1

Neo...
Neo...

Reputation: 96

It's work correct for me!

Reinstall fbconsole with this command:

python setup.py install

I hope it's work for you too!

Good Luck

Upvotes: 3

Related Questions