Open Kreijstal opened 3 months ago
Hey @Kreijstal, we recommend using https://wasmer.sh/ for now.
You can run any package using: wasmer run
.
Eg: wasmer run cowsay hi
Hey @Kreijstal, we recommend using https://wasmer.sh/ for now.
You can run any package using:
wasmer run
.Eg:
wasmer run cowsay hi
It worked, kind of?
bash-5.1# cowsay hi
bash: cowsay: command not found
bash-5.1# wasmer run cowsay hi
____
< hi >
----
bash-5.1# wasmer run cowsay hello
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1# wasmer run cowsay hi
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1# wasmer run cowsay hi
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1# RUST_BACKTRACE=1 wasmer run cowsay hi
thread 'main' panicked at 'failed printing to stdout: Broken pipe (os error 64)', library/std/src/io/stdio.rs:1008:9
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
bash-5.1#
Using firefox on windows 10. Cowsay does not work.