(wlroots) al@al-desktop:~/wlroots/pywlroots$ python3 -m tiny
Traceback (most recent call last):
File "<frozen runpy>", line 198, in _run_module_as_main
File "<frozen runpy>", line 88, in _run_code
File "/home/al/wlroots/pywlroots/tiny/__main__.py", line 13, in <module>
from wlroots.helper import build_compositor
File "/home/al/wlroots/pywlroots/wlroots/__init__.py", line 8, in <module>
from ._ffi import ffi, lib
ModuleNotFoundError: No module named 'wlroots._ffi'
This happens because there is a wlroots module right next to tiny in the repository, so that one will be imported instead of the one installed by pip. But that one hasn't been built, so it does not work.
Reproduce:
Result:
This happens because there is a
wlroots
module right next totiny
in the repository, so that one will be imported instead of the one installed by pip. But that one hasn't been built, so it does not work.Workaround:
Move
tiny
somewhere else.