Run your first package
This page will guide you through installing Wasmer, and running a package from the Wasmer Registry.
The runtime can run any pacakge published to the Wasmer Registry.
Install Wasmer
Click here for instructions on how to install Wasmer if you haven't done it already!
Run a package
Let's say you want to run the Wasmer package python/python
(opens in a new tab) and execute the -c "print(1+1)"
to print a result.
wasmer run python/python -- -c "print(1+1)"
ℹ️
You can also publish your packages to the Wasmer registry, so it can be used everywhere. Learn how.