Setup your Python environment
To be able to run Wasmer inside our Python application, we will need Python to be installed in our system.
The easiest way to get Python in your system is to follow the official documentation.
To ensure it is installed, let's run the following:
python --version # This will show the Python version
If this command work, Python is successfully installed!
Start a Python project
Now it's time to create a new project and add Wasmer as a dependency:
mkdir wasmer-project
cd wasmer-project
pip install wasmer
pip install wasmer_compiler_cranelift
Next, let's take a look at some examples!
ExamplesLast updated
Was this helpful?