Install Docker Compose using Pip fails - RPI4 32Bit OS Bullseye Architecture: armv7l #482
-
I did this last week and it worked fine with 64Bit Bullseye but is failing on 32Bit. TASK [Install Docker Compose using Pip.] ********************************************************************************************************************************************************************* Complete error message below: TASK [Install Docker Compose using Pip.] ********************************************************************************************************************************************************************* |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Not sure if it will work for your use case, but when I was getting this error on my build, this answer fixed it for me. teslamate-org/teslamate#2881 (comment) Basically, manually installing docker-compose with apt using |
Beta Was this translation helpful? Give feedback.
Not sure if it will work for your use case, but when I was getting this error on my build, this answer fixed it for me.
teslamate-org/teslamate#2881 (comment)
Basically, manually installing docker-compose with apt using
sudo apt install docker-compose
. There is something not working with Pip to install docker-compose and by pre-installing it, you bypass the problem.