Stream: git-wasmtime

Topic: wasmtime / issue #12774 publish to pypi


view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2026 at 14:08):

cataggar opened issue #12774:

I need a way to more easily acquire wasmtime binaries. In #7192, I asked about distributing via npm, but I recently started using just a lot. One of the easiest ways to acquire it in Docker or a WSL or any new environment with Python is do

tdnf install -y python3 python3-pip
python3 -m pip install uv
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
uv tool install rust-just
just --help

I want the same thing for wasmtime. I noticed https://github.com/justin-yan/pybin publishing several binaries. I went ahead and did something similar for wasmtime.

https://pypi.org/project/wasmtime-bin/

uv tool install wasmtime-bin

In the future, if you want to take it over, let me know.

view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2026 at 14:10):

cataggar edited issue #12774:

I need a way to more easily acquire wasmtime binaries. In #7192, I asked about distributing via npm, but I recently started using just a lot. One of the easiest ways to acquire it in Docker or a WSL or any new environment with Python is to do

tdnf install -y python3 python3-pip
python3 -m pip install uv
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
uv tool install rust-just
just --help

I want the same thing for wasmtime. I noticed justin-yan/pybin publishing several binaries. I went ahead and did something similar for wasmtime.

https://pypi.org/project/wasmtime-bin/

uv tool install wasmtime-bin

In the future, if you want to take it over, let me know.

view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2026 at 14:11):

cataggar edited issue #12774:

I need a way to more easily acquire wasmtime binaries. In #7192, I asked about distributing via npm, but I recently started using just a lot. One of the easiest ways to acquire it in Docker or a WSL or any new environment with Python is to do

tdnf install -y python3 python3-pip
python3 -m pip install uv
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
uv tool install rust-just
just --help

I want the same thing for wasmtime. I noticed justin-yan/pybin publishing several binaries. I went ahead and did something similar for wasmtime.

https://pypi.org/project/wasmtime-bin/

uv tool install wasmtime-bin

In the future, if you want to take it over, let me know. Project is at https://github.com/cataggar/pypi-wasmtime .

view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2026 at 17:20):

pchickey commented on issue #12774:

Wasmtime binaries are published to GitHub releases, and the cargo binstall tool automates fetching and installing those locally.

[p.hickey@KVKD0WG7VF:src/nginx-wasm]% cargo binstall wasmtime-cli
 INFO resolve: Resolving package: 'wasmtime-cli'
 WARN The package wasmtime-cli v42.0.1 (aarch64-apple-darwin) has been downloaded from github.com
 INFO This will install the following binaries:
 INFO   - wasmtime => /Users/p.hickey/.cargo/bin/wasmtime
Do you wish to continue? [yes]/no y
 INFO Installing binaries...
 INFO Done in 6.135038625s

view this post on Zulip Wasmtime GitHub notifications bot (Mar 13 2026 at 17:22):

pchickey closed issue #12774:

I need a way to more easily acquire wasmtime binaries. In #7192, I asked about distributing via npm, but I recently started using just a lot. One of the easiest ways to acquire it in Docker or a WSL or any new environment with Python is to do

tdnf install -y python3 python3-pip
python3 -m pip install uv
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc
uv tool install rust-just
just --help

I want the same thing for wasmtime. I noticed justin-yan/pybin publishing several binaries. I went ahead and did something similar for wasmtime.

https://pypi.org/project/wasmtime-bin/

uv tool install wasmtime-bin

In the future, if you want to take it over, let me know. Project is at https://github.com/cataggar/pypi-wasmtime .


Last updated: Mar 23 2026 at 16:19 UTC