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
Running ./start-mycroft.sh all works fine, but ./start-mycroft.sh cli fails with this:
Traceback (most recent call last):
File "/usr/lib/python3.7/runpy.py", line 183, in _run_module_as_main
mod_name, mod_spec, code = _get_module_details(mod_name, _Error)
File "/usr/lib/python3.7/runpy.py", line 109, in _get_module_details
__import__(pkg_name)
File "/home/pi/mycroft-core/mycroft/__init__.py", line 17, in <module>
from mycroft.api import Api
File "/home/pi/mycroft-core/mycroft/api/__init__.py", line 22, in <module>
from mycroft.configuration import Configuration
File "/home/pi/mycroft-core/mycroft/configuration/__init__.py", line 15, in <module>
from .config import Configuration, LocalConf, RemoteConf
File "/home/pi/mycroft-core/mycroft/configuration/config.py", line 26, in <module>
from mycroft.util.combo_lock import ComboLock
File "/home/pi/mycroft-core/mycroft/util/__init__.py", line 24, in <module>
from mycroft.util.format import nice_number
File "/home/pi/mycroft-core/mycroft/util/format.py", line 34, in <module>
from lingua_franca import get_default_loc
ImportError: cannot import name 'get_default_loc' from 'lingua_franca' (/home/pi/mycroft-core/.venv/lib/python3.7/site-packages/lingua_franca/__init__.py)
Looks like a python version mismatch but I might be wrong. Can anyone help? Thank you in advance.
The text was updated successfully, but these errors were encountered:
ok, fixed
Solution: clone the lingua_franca repo from github, navigate to lingua_franca in site-packages and delete every file, then put the content of the lingua_franca from the downloaded content inside the folder on the picroft, and done.
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
Steps to reproduce the behavior:
https://paste.debian.net/1287933
Running
./start-mycroft.sh all
works fine, but./start-mycroft.sh cli
fails with this:Looks like a python version mismatch but I might be wrong. Can anyone help? Thank you in advance.
The text was updated successfully, but these errors were encountered: