Traceback (most recent call last):
File "jasper.py", line 12, in
from client import tts, stt, jasperpath, diagnose
File "/home/pi/jasper/client/init.py", line 1, in
from modules import Twitter
ImportError: cannot import name Twitter
Ok, figured out that problem. Disregard, had the wrong init, but I just get this:
Traceback (most recent call last):
File "jasper.py", line 13, in
from client.conversation import Conversation
File "/home/pi/jasper/client/conversation.py", line 3, in
from notifier import Notifier
File "/home/pi/jasper/client/notifier.py", line 4, in
from modules import Gmail
File "/home/pi/jasper/client/modules/__init.py", line 2, in
from modules import Twitter
ImportError: No module named modules
I had a similar error, it was because I had not installed the tweepy dependency. I ran into further trouble with it throwing some error about not being able to be imported but I found this SO post which solved my issue.
Traceback (most recent call last): File "jasper.py", line 12, in
from client import tts, stt, jasperpath, diagnose
File "/home/pi/jasper/client/init.py", line 1, in
from modules import Twitter
ImportError: cannot import name Twitter