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
>>> from nmt-chatbot.inference import inference
File "<stdin>", line 1
from nmt-chatbot.inference import inference
^
SyntaxError: invalid syntax
Error in sys.excepthook:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 63, in apport_excepthook
from apport.fileutils import likely_packaged, get_recent_crashes
File "/usr/lib/python3/dist-packages/apport/__init__.py", line 5, in <module>
from apport.report import Report
File "/usr/lib/python3/dist-packages/apport/report.py", line 30, in <module>
import apport.fileutils
File "/usr/lib/python3/dist-packages/apport/fileutils.py", line 23, in <module>
from apport.packaging_impl import impl as packaging
File "/usr/lib/python3/dist-packages/apport/packaging_impl.py", line 23, in <module>
import apt
File "/usr/lib/python3/dist-packages/apt/__init__.py", line 23, in <module>
import apt_pkg
ModuleNotFoundError: No module named 'apt_pkg'
Original exception was:
File "<stdin>", line 1
from nmt-chatbot.inference import inference
^
SyntaxError: invalid syntax
>>>
So is there a way to correctly import it?
The text was updated successfully, but these errors were encountered:
That's an unfortunate mistake to use dash in module name.
But with dash replaced with underscore: from nmt_chatbot.inference import inference
that works for me.
So using the example, I should be able to use
from nmt-chatbot.inference import inference
But when I try, I get this:
So is there a way to correctly import it?
The text was updated successfully, but these errors were encountered: