I’m facing some problem with a Synology RS815RP+ with docker installed, DSM 7.0.1-42218.
I have a container with domoticz google assistant installed, the container starts and suddenly stops after some seconds, the container log report the error:
“/entrypoint.sh: line 144: 15 Killed pip install $PIP_FLAGS --upgrade pip”
I don’t know what caused it in your environment but I had a similar error message using python virtual environment. I was not surprised since I tried to use an old python version on my Mac. It was the first time I got this error message and it was just today. I show how I could reproduce it. It might help you or someone else find a solution for you.
So you are saying you have Python 3.8.8 but it is Python 3.7.3 in the details on the Domoticz forum you mentioned. So where is is Python 3.8.8 and where is Python 3.7.3?
If you have multiple python versions in the container, is the “pip” command using Python 3 or Python 2? Can you run the a container from the same image and try pip --version ?
If you need it to be on the host (Synology), and you can’t install it using the package manager, you can download the sourcecode of any version from python.org. Python 3.7.3 is here:
Then you can build it from source code. I quote from README.rst
Build Instructions
------------------
On Unix, Linux, BSD, macOS, and Cygwin::
./configure
make
make test
sudo make install