I’m following your valuable recommendations to install SCT with Docker.
When I run ./install_sct -y in my terminal, the installation fails as shown in the screen below :
I believe this issue comes from the difference between Intel Macs and ARM (M1, M2, etc.) Macs. I realize now that our instructions are not written with M1+ Macs in mind, and my guess is that you probably have an M1 Mac?
To fix this, I believe you just need to make a single change to one of the commands from the instructions:
# before
docker run -it ubuntu:22.04
# after
docker run -it --platform=linux/amd64 ubuntu:22.04
Many thanks for your help. I’ve just tried to run the instructions with this new command and now it works perfectly ! Thank you so much for solving my issue.
I’m also achieving instructions of the optional part (Enable GUI Scripts) and I guess I need to make a change on the both following commands too ? Or not at all ?
Ahh, very good observation! You will need to use “--platform=linux/amd64” for any of the “docker run” commands, but you do not need to use it for the “docker commit” command that you’ve highlighted.