You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
python main_simple_seq2seq.py
Traceback (most recent call last):
File "main_simple_seq2seq.py", line 18, in
from data.twitter import data
ImportError: No module named twitter
The text was updated successfully, but these errors were encountered:
I see this is a closed issue, but I am python noob, and knowing where the files are doesn't help me. You would think it would search from current directory and find it??? Should there be a change to an init file? Can this be resolved with a change to the code or config?
It appears that you need to make sure you are using python3. By default, Ubuntu runs python v2 when you just call python. To get this app to run correctly, try python3 main.py with your arguments.
To make sure all of your modules are installed you will need to install them using pip3.
python main_simple_seq2seq.py
Traceback (most recent call last):
File "main_simple_seq2seq.py", line 18, in
from data.twitter import data
ImportError: No module named twitter
The text was updated successfully, but these errors were encountered: