I’m trying to install a Kicad pythonscript. It requires me to install a dependency package using pip.
I also have pyenv installed to manage my python environments on my debian 12 box.
It appears Kicad is using the system default python environment.
I had to use pip3 --break-system-packages install KicadModTree
to install a package because debian does not allow pip to be used in the system python install.
Is there another/preferred way of doing this?
Can I use a specific pyenv environment for kicad?