What is the recommended/required architecture for the development in this challenge?
My current system is aarch64 GNU/Linux , and I see an error when using pixi to install and build the dependencies.
Error:
pixi install
Error: unsupported-platform
× The workspace does not support ‘linux-aarch64’.
│ Add it with ‘pixi workspace platform add linux-aarch64’.
help: supported platforms are linux-64, osx-arm64
The help message describes the supported architectures. We leave it to participants to modify the pixi.toml file to support any other distributions/architectures. We recommend amd64 on Ubuntu 24.04.
Thanks @Yadunund for the quick reply. Will update the pixi file.
@Yadunund As suggested, I updated the pixi.tomlfile to include the linux-aarch6. Also, with the docker pull … command, I added a flag to specify the platform using --platform linux/aarch64. I see an error:
docker: no matching manifest for linux/arm64 in the manifest list entries
When I check the manifest, I see only
“platform”: {
“architecture”: “amd64”,
“os”: “linux”
}
and
“platform”: {
“architecture”: “unknown”,
“os”: “unknown”
}
I believe it is best to move to amd64 to avoid further compatibility issues?