|
I keep getting this error. Node is up to date. Any ideas on how to fix it? [12/31/2024, 12:47:08 PM] [KasaPython] [Python Check] Python 3.8.10 is installed. However, only Python 3.9, 3.10, 3.11, 3.12, 3.13 is supported. |
Answered by
mexzar
Jan 2, 2025
Replies: 1 comment 7 replies
|
@mexzar Are you using the latest docker image? It should be running on Ubuntu 24.04 should come with 3.12 as the system default version of Python. |
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Figured this out... @ZeliardM - thanks a ton for your help! For future reference... I added the following lines to the startup script (from homebridge settings):
apt-get update
apt install -y software-properties-common
add-apt-repository -y ppa:deadsnakes/ppa
apt update
apt install -y python3.10
update-alternatives --install /usr/bin/python3 python /usr/bin/python3.10 2
update-alternatives --install /usr/bin/python3 python /usr/bin/python3.8 1
apt install -y python3.10-venv
This then got everything working an all my kasa devices are now beautifully showing up on my phone!