My Domoticz V4.10717 is running well on my Pi for a while now. I am looking to add functionality using Python Plugins, but I have trouble to get it working.
I've followed the Wiki on the Git of the plugin I'd like to use. And of course https://www.domoticz.com/wiki/Using_Python_plugins.
The problem seems to be that the PluginSystem doesn't start. See log at startup:
- Spoiler: show
Code: Select all
PluginSystem: Failed dynamic library load, install the latest libpython3.x library that is available for your platform.
Code: Select all
pi@raspberrypi:~ $ python3 -V
Python 3.7.3
Code: Select all
pi@raspberrypi:~ $ dpkg --get-selections | grep libpython
libpython-stdlib:armhf install
libpython2-stdlib:armhf install
libpython2.7-minimal:armhf install
libpython2.7-stdlib:armhf install
libpython3-stdlib:armhf install
libpython3.6:armhf install
libpython3.6-minimal:armhf install
libpython3.6-stdlib:armhf install
libpython3.7:armhf install
libpython3.7-minimal:armhf install
libpython3.7-stdlib:armhf install
pi@raspberrypi:~ $
I am trying to get a lot of MQTT information into Domoticz using https://github.com/bbqkees/ems-esp-domoticz-plugin.
Any suggestions to get the PluginSystem (and EventsSystem) working?