The question is fairly simple: Does Wasmer support running on the Raspberry Pi? (In my case, a Raspberry Pi 3 B+)
This implies support for ARMv8
We are very close to getting Wasmer running on ARM ( #713 )
Stay tuned for updates!
Can't we use on ARM with the LLVM backend? I guess the singlepass backend is a different issue...
Yeah, ARM in the LLVM backend is also possible. Feel free to create a dedicated issue for that @igrep! :)
Now that we merged #713 we should be good to go closing this issue as ARMv8 is now supported in Wasmer!
You can install it in your Raspberry Pi as normal:
curl https://get.wasmer.io -sSfL | sh
i got this message on raspberry pi 4:
> The system architecture (armv7l) is not supported by this installation script.
@leung85 perhaps this guide might help:
https://conoroneill.net/2019/12/02/running-wasmer-on-a-raspberry-pi-4-with-64bit-userland.md/
Let us know if it worked!
Running Wasmer on a Raspberry Pi 4 has become even easier. Just install Ubuntu server 64-bit for Raspberry Pi 4 by following the official Ubuntu installation instructions here.
Then run the usual curl https://get.wasmer.io -sSfL | sh to install Wasmer and Wapm, and test drive your Wasmer install by running, for instance, wapm install lhauspie/[email protected] followed by wapm run fibo 10.
Most helpful comment
Running Wasmer on a Raspberry Pi 4 has become even easier. Just install Ubuntu server 64-bit for Raspberry Pi 4 by following the official Ubuntu installation instructions here.
Then run the usual
curl https://get.wasmer.io -sSfL | shto install Wasmer and Wapm, and test drive your Wasmer install by running, for instance,wapm install lhauspie/[email protected]followed bywapm run fibo 10.