wasmer-python
๐๐ธ WebAssembly runtime for Python
File Explorer
Download Latest Version (.zip)- ---bug-report.md
- ---feature-request.md
- --question.md
- release.yml
- test.yml
- dependabot.yml
- nbody.wasm
- test_compilation_time.py
- test_execution_time.py
- test_headless_time.py
- test_memory.py
- wasmer.html
- wasmer_compiler_cranelift.html
- wasmer_compiler_llvm.html
- wasmer_compiler_singlepass.html
- index.html
- search.js
- wasmer.html
- wasmer_compiler_cranelift.html
- wasmer_compiler_llvm.html
- wasmer_compiler_singlepass.html
- from_c.c
- from_c.py
- from_c.wasm
- greet.py
- greet.rs
- greet.wasm
- simple.py
- simple.rs
- simple.wasm
- wasi.rs
- wasi.wasm
- compiler_cranelift.py
- compiler_llvm.py
- compiler_singlepass.py
- engine_cross_compilation.py
- engine_dylib.py
- engine_headless.py
- engine_universal.py
- exports_function.py
- exports_global.py
- exports_memory.py
- imports_exports.py
- imports_function.py
- imports_function_early_exit.py
- instance.py
- README.md
- wasi.py
- __init__.py
- README.md
- setup.py
- __init__.py
- README.md
- setup.py
- __init__.py
- README.md
- setup.py
- __init__.py
- README.md
- setup.py
- function.rs
- global.rs
- memory.rs
- mod.rs
- table.rs
- buffer.rs
- mod.rs
- views.rs
- engines.rs
- errors.rs
- exports.rs
- import_object.rs
- instance.rs
- lib.rs
- module.rs
- store.rs
- target.rs
- types.rs
- values.rs
- wasi.rs
- wat.rs
- build.rs
- Cargo.toml
- pyproject.toml
- README.md
- lib.rs
- Cargo.toml
- pyproject.toml
- README.md
- lib.rs
- Cargo.toml
- pyproject.toml
- README.md
- lib.rs
- Cargo.toml
- pyproject.toml
- README.md
- engines.rs
- lib.rs
- target_lexicon.rs
- Cargo.toml
- README.md
- README.md
- update-version.sh
- custom_sections.rs
- custom_sections.wasm
- invalid.wasm
- test_docs.py
- test_function.py
- test_global.py
- test_import_object_dict.py
- test_import_object_old.py
- test_instance.py
- test_memory.py
- test_module.py
- test_store.py
- test_table.py
- test_target.py
- test_type.py
- test_value.py
- test_wasi.py
- test_wat.py
- tests.rs
- tests.wasm
- wasi.rs
- wasi.wasm
- .gitattributes
- .gitignore
- bors.toml
- Cargo.lock
- Cargo.toml
- CHANGELOG.md
- conftest.py
- justfile
- LICENSE
- README.md
# Installation Guide
1. Get the code
git clone https://github.com/wasmerio/wasmer-python
Downloads the entire project code from GitHub to your computer.
cd wasmer-python
Moves into the project folder you just downloaded.
2. Python
Easy RecommendedPrerequisites
โ ๏ธ This is a large repository, so this method may point to an internal sub-package rather than the actual core product. Check the full README as well.
pip install .
Installs the package published on PyPI directly โ no need to clone the source.
python <์คํํ ํ์ผ๋ช
>.py # README์์ ์ ํํ ์คํ ํ์ผ๋ช
์ ํ์ธํ์ธ์
Runs the Python script (or module).
If it runs without errors and prints output in the terminal, it worked.
3. Rust
MediumPrerequisites
- Git Needed to download the project code from GitHub.
- Rust (rustup) Installing via rustup also installs cargo.
cargo build --release
Compiles the Rust project.
cargo run
Builds and then immediately runs the program.
If cargo build finishes without errors, it worked. The executable is created under target/.
// repository documentation
Was this content helpful?
(0 ratings)
