I can run a config software from a virtual environment that ends up with the following error:
File "/usr/lib/python3.11/importlib/__init__.py", line 126, in import_module
return _bootstrap._gcd_import(name[level:], package, level)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ModuleNotFoundError: No module named 'kiwisolver
However, if I try to install it I get:
$ pip3 install kiwisolver
Requirement already satisfied: kiwisolver in /usr/lib/python3/dist-packages (1.3.2)
What am I missing here?
/usr/lib/python3/and/usr/lib/python3.11/) andpip3installs modules for one Python but you run code with other Python. You could usepython -m pip ...(or evenpython3.11 -m pip ...) instead ofpip3