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
On a fresh install of Debian 12 (Python 3.11.2), I try to set up python-matter-server using the following command:
pip3 install --no-cache-dir python-matter-server
However, when I try to run it, it get the following error. How can this be resolved?
root@matter-server:~# python3 -m matter_server.server
Traceback (most recent call last):
File "<frozen runpy>", line 189, in _run_module_as_main
File "<frozen runpy>", line 148, in _get_module_details
File "<frozen runpy>", line 112, in _get_module_details
File "/usr/local/lib/python3.11/dist-packages/matter_server/server/__init__.py", line 3, in <module>
from .server import MatterServer
File "/usr/local/lib/python3.11/dist-packages/matter_server/server/server.py", line 32, in <module>
from ..server.client_handler import WebsocketClientHandler
File "/usr/local/lib/python3.11/dist-packages/matter_server/server/client_handler.py", line 13, in <module>
from chip.exceptions import ChipStackError
ModuleNotFoundError: No module named 'chip.exceptions'
The text was updated successfully, but these errors were encountered:
On a fresh install of Debian 12 (Python 3.11.2), I try to set up python-matter-server using the following command:
pip3 install --no-cache-dir python-matter-server
However, when I try to run it, it get the following error. How can this be resolved?
The text was updated successfully, but these errors were encountered: