# Install wasmer with Homebrew, MacPorts, Nix, pacman, scoop, winget

Universal WebAssembly Runtime. Version 7.2.0 via Homebrew; verified 2026-06-30.

## Install

```sh
sudo av install brew:wasmer
```

Additional install commands:

### macOS

- Homebrew (100%):

```sh
brew install wasmer
```

  Evidence: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install wasmer
```

  Evidence: MacPorts ports tree: lang/wasmer/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- Nix (92%):

```sh
nix profile install nixpkgs#wasmer
```

  Evidence: nixpkgs package indexes: pkgs/by-name/wa/wasmer/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S wasmer
```

  Evidence: Arch Linux sync databases: wasmer from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

### Windows

- Scoop (92%):

```sh
scoop install main/wasmer
```

  Evidence: Scoop official bucket manifest trees: bucket/wasmer.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id Wasmer.Wasmer -e
```

  Evidence: Windows Package Manager source index: Wasmer.Wasmer from https://cdn.winget.microsoft.com/cache/source.msix

## Package facts

- **Package key:** brew:wasmer
- **Package manager:** Homebrew
- **Package manager page:** <https://formulae.brew.sh/formula/wasmer>
- **Version:** 7.2.0
- **Source summary:** Universal WebAssembly Runtime
- **Homepage:** <https://wasmer.io>
- **Repository:** <https://github.com/wasmerio/wasmer>
- **Upstream docs:** <https://docs.wasmer.io/>
- **License:** MIT
- **Source archive:** <https://github.com/wasmerio/wasmer.git>
- **Last updated:** 2026-06-30T22:49:24Z
- **Generated:** 2026-07-08T07:18:31+00:00

## Executables

- wasmer (cli)
- wasmer (alias)

## Build dependencies

- cmake
- pkgconf
- rust
- wabt

## Install behavior

- Post-install hook: not defined
- Bottle: available on arm64_linux, arm64_sequoia, arm64_sonoma, arm64_tahoe, sonoma, x86_64_linux

## Freshness

- Page generated: 2026-07-08
- Package-manager version: 7.2.0
- Package-manager updated: 2026-06-30
- Local data: ok
- Upstream repository: https://github.com/wasmerio/wasmer
- info: No cached GitHub release or tag data was available.
## Project history and usage

Wasmer is a Rust-based WebAssembly runtime and platform for running Wasm modules outside the browser. It began as a universal runtime and embedding API and grew into a broader Wasmer ecosystem covering CLI execution, language integrations, WAPM/Wasmer package workflows, WASIX, and Wasmer Edge.

### Project history

Wasmer reached 1.0 general availability on January 5, 2021. The 1.0 announcement emphasized a stabilized API, much faster compilation, cross-compilation, a headless mode for smaller deployments, and multiple compiler and engine choices.

Secondary coverage of the 1.0 release noted that Wasmer's journey had started more than two years earlier with version 0.1.0 and connected the release to the broader rise of server-side WebAssembly. Wasmer's architecture became recognizable for pluggable compilers and engines, including Singlepass, Cranelift, LLVM, JIT execution, and native-code artifacts.

Wasmer 2.0 followed in 2021 with SIMD, reference types, and performance improvements. Wasmer 3.0 added the ability to create native executables from Wasm for Windows, Linux, and macOS, while Wasmer 4.0 introduced a new runner architecture, stabilized WASIX support, and folded WAPM more directly into the Wasmer product story.

By the mid-2020s Wasmer's public messaging had shifted from just a runtime to a WebAssembly cloud platform. Wasmer 5.0 highlighted additional backend support such as V8, Wasmi, and WAMR for iOS scenarios, and later releases continued to connect the runtime with edge hosting, deploy flows, and sandboxed server workloads.

### Adoption history

Wasmer's adoption has two overlapping tracks. One is embedding: language bindings for Python, Go, Ruby, Java, and other ecosystems let applications run Wasm modules through a native library API. Official blog posts around the 1.0-era bindings describe stable APIs, WASI support, and millions of package installations in the Python embedding.

The other track is application distribution. WAPM was created as a WebAssembly package manager and later unified into the Wasmer CLI and website. Wasmer's own WAPM revamp post said community support rose after Wasmer 1.0, 2.0, and 2.1 and that apps, libraries, and smart contracts were using Wasmer in production environments.

Wasmer's later WASIX and Edge work made it especially relevant to developers trying to run POSIX-like programs, websites, and server workloads in a Wasm sandbox. That puts it in a different adoption lane from pure embedders: it competes with containers and serverless platforms as much as with other Wasm engines.

### How it is used

CLI users run modules and packages with wasmer run, publish packages through Wasmer-oriented workflows, or create native executables from Wasm artifacts. Embedding users depend on language packages or the Rust crate to compile, instantiate, and call WebAssembly modules from a host application.

Wasmer is often selected when a project wants a broad cross-platform runtime with multiple compiler backends, language bindings, or a Wasm-native package/deploy story. Wasmtime is commonly chosen for Bytecode Alliance standards work and capability security, while WasmEdge is commonly chosen for CNCF and edge/container integration; Wasmer's package-nerd identity is its runtime-plus-registry-plus-edge-platform arc.

### Why package nerds care

Wasmer is historically important because it tried to make WebAssembly feel like a universal application format, not just a browser compilation target or an embeddable VM. WAPM and later wasmer.toml workflows gave package managers a concrete example of Wasm modules as named, versioned, runnable artifacts.

It is also a useful case study in runtime packaging complexity. A single Wasmer release can involve Rust crates, language bindings, native binaries, compiler backends, WASI/WASIX behavior, package registry semantics, and edge deployment tooling.

### Timeline

- 2018-2019: Wasmer's early 0.x line established the project before the 1.0 release.
- 2021-01-05: Wasmer 1.0 became generally available with a stabilized API and major performance work.
- 2021: Wasmer 2.0 added SIMD, reference types, and runtime performance improvements.
- 2022: Wasmer 3.0 added native executable generation from Wasm.
- 2023: Wasmer 4.0 introduced the runner architecture, stabilized WASIX, and unified WAPM into Wasmer.
- 2024: Wasmer 5.0 highlighted additional backend support and broader platform reach.
- 2026: Wasmer 7.0 added an experimental async API, exception support in Cranelift, RISC-V and multi-value support in Singlepass, and fuller dynamic linking support in WASIX.

### Related projects

- Wasmtime is a closely related WebAssembly runtime, especially for WASI and component-model standards work.
- WasmEdge is a related runtime with stronger CNCF and cloud-native edge positioning.
- Cranelift, LLVM, Singlepass, V8, Wasmi, and WAMR appear in Wasmer's compiler/backend story.
- WAPM and WASIX are central related projects in Wasmer's package and POSIX-like application ecosystem.

### Sources

- <https://blog.wasmer.io/wasmer-1-0-3f86ca18c043>
- <https://github.com/wasmerio/wasmer>
- <https://wasmer.io/posts/announcing-wasmer-3_0>
- <https://wasmer.io/posts/introducing-wasmer-v5>
- <https://wasmer.io/posts/wapm-revamp>
- <https://wasmer.io/posts/wasmer-2_0>
- <https://wasmer.io/posts/wasmer-4_0>
- <https://wasmer.io/posts/wasmer-7>
- <https://wasmer.io/posts/welcome-to-the-new-wasmer>
- <https://www.infoq.com/news/2021/01/wasmer-generally-available/>


## Security Notes

generalized runtime or code generation signal.

- **Geiger risk:** yellow / medium
- generalized runtime or code generation signal

## Source Database Details

- **Source Database:** Homebrew formula API
- **Tap:** homebrew/core
- **Full Name:** wasmer
- **Version Scheme:** 0
- **Revision:** 0
- **Head Version:** HEAD
- **Bottle Stable Root URL:** <https://ghcr.io/v2/homebrew/core>
- **Deprecated:** no
- **Disabled:** no
- **Keg Only:** no
- **URL Keys:** head, stable

## Other Package-Manager Records

- Nix - wasmer: normalized package name match | nixpkgs package indexes: pkgs/by-name/wa/wasmer/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- pacman - wasmer - 7.1.0-1: normalized package name match | Arch Linux sync databases: wasmer from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Universal Binaries Powered by WebAssembly | https://github.com/wasmerio/wasmer
- MacPorts - wasmer: normalized package name match | MacPorts ports tree: lang/wasmer/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Scoop - main/wasmer: normalized package name match | Scoop official bucket manifest trees: bucket/wasmer.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
- winget - Wasmer.Wasmer: normalized package name match | Windows Package Manager source index: Wasmer.Wasmer from https://cdn.winget.microsoft.com/cache/source.msix


## Related links

- [Secret-risk packages](https://www.automicvault.com/pkg/secret-risk-packages/) - Has protected-tool coverage, approval-gate, or non-low Geiger security signals.
- [Terminal utility packages](https://www.automicvault.com/pkg/terminal-utilities/) - Matched terminal and command-line workflow metadata.
- [Text processing packages](https://www.automicvault.com/pkg/text-processing-tools/) - Matched text, document, or structured-data processing metadata.
- [Developer build packages](https://www.automicvault.com/pkg/developer-build-tools/) - Matched build, compiler, generator, or developer workflow metadata.
- [cmake](https://www.automicvault.com/pkg/brew/cmake/) - Build dependency declared by Homebrew.
- [pkgconf](https://www.automicvault.com/pkg/brew/pkgconf/) - Build dependency declared by Homebrew.
- [rust](https://www.automicvault.com/pkg/brew/rust/) - Build dependency declared by Homebrew.
- [wabt](https://www.automicvault.com/pkg/brew/wabt/) - Build dependency declared by Homebrew.
- [wasmedge](https://www.automicvault.com/pkg/brew/wasmedge/) - Shares av.db curated category or tags: cli, developer-tools, runtime, wasi, wasm-runtime.
- [wasmtime](https://www.automicvault.com/pkg/brew/wasmtime/) - Shares av.db curated category or tags: cli, developer-tools, runtime, wasi, webassembly.
- [cargo-component](https://www.automicvault.com/pkg/brew/cargo-component/) - Shares av.db curated category or tags: cli, developer-tools, webassembly.
- [ic-wasm](https://www.automicvault.com/pkg/brew/ic-wasm/) - Shares av.db curated category or tags: cli, developer-tools, webassembly.
- [wasm-bindgen](https://www.automicvault.com/pkg/brew/wasm-bindgen/) - Shares av.db curated category or tags: cli, developer-tools, webassembly.
- [wasm-component-ld](https://www.automicvault.com/pkg/brew/wasm-component-ld/) - Shares av.db curated category or tags: cli, developer-tools, webassembly.
- [wasm-pack](https://www.automicvault.com/pkg/brew/wasm-pack/) - Shares av.db curated category or tags: cli, developer-tools, webassembly.

## Combined YAML source

View the package source record on GitHub. [combined/wasmer.yml](https://github.com/automic-vault/db/blob/main/combined/wasmer.yml)


## Sources

- Nucleus package database
- Geiger risk classifier
- package-page enrichment
- curated package history
- package version freshness
- av.db category and tag curation
- package relationship graph
- external package-manager database matches
- cross-ecosystem install command graph
