0

从这篇文章https://asquera.de/blog/2018-10-01/webassembly-and-wasm-bindgen/我发现我们可以运行wasm-bindgen target/wasm32-unknown-unknown/release/qr_wasm.wasm --out-dir ./dist --no-modules --no-typescript以创建 wasm 和 js 文件而无需运行wasm-pack build(它会安装 wasm-bindgen 不管我以前安装了一个,使它有点慢)这对我来说似乎更灵活,但是当我运行wasm-bindgen xxx它时说:zsh: command not found: wasm-bindgen

我用谷歌搜索了它,但似乎没有人遇到过这个问题。我的项目中也有cargo installwasm-bindgen 和 wasm-bindgen-cli。

4

3 回答 3

3

我从谷歌来到这里时遇到了同样的问题。

我的解决方法是cargo install wasm-bindgen-clihttps ://docs.rs/crate/wasm-bindgen/0.2.8

于 2020-05-26T02:53:00.867 回答
1

确保$HOME/.cargo/bin在您的PATH.

如果不:

export PATH="$PATH:$HOME/.cargo/bin"

或编辑您的.bashrc或其他方式

于 2022-01-10T00:38:58.040 回答
0

wasm-bindgen使用cargo install wasm-bindgen-cli命令安装,但是我无法执行它。

在 Arch 上,我用yay -S wasm-bindgen-bin

于 2020-09-07T23:33:59.897 回答