Setup your Rust environment

To be able to run Wasmer inside our Rust application, we will need Rust installed in our system.

The easiest way to get Rustarrow-up-right in your system is via Rustuparrow-up-right. To get Rustup on Linux and macOS, you can run the following:

curl https://sh.rustup.rs -sSf | sh
circle-info

To install Rust on Windows, download and run rustup-init.exearrow-up-right, then follow the onscreen instructions.

To ensure this is installed, let's run the following:

rustc -V # This will show the Rust version
cargo -V # This will work
circle-check

Next, let's take a look at some examples!

Last updated

Was this helpful?