Skip to content

Commit 57e40b8

Browse files
committed
Still more GitHub markdown parsing issues...
1 parent b54d0d6 commit 57e40b8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -79,16 +79,17 @@ cargo run
7979
4. Download the WasmEdge WASI-NN plugin here: [WasmEdge-plugin-wasi_nn-ggml-0.14.0-windows_x86_64.zip](https://github.com/WasmEdge/WasmEdge/releases/download/0.14.0/WasmEdge-plugin-wasi_nn-ggml-0.14.0-windows_x86_64.zip) (15.5MB) and extract it to the same directory as above, e.g., `C:\Users\<USERNAME>\WasmEdge-0.14.0-Windows`.
8080
8181
> [!IMPORTANT]
82-
> You will be asked whether you want to replace the files that already exist; select `Replace the files in the destination` when doing so.
82+
> You will be asked whether you want to replace the files that already exist; select `Replace the files in the destination` when doing so.
8383
8484
To do this quickly in powershell:
85+
8586
```powershell
8687
$ProgressPreference = 'SilentlyContinue' ## makes downloads much faster
8788
Invoke-WebRequest -Uri "https://github.com/WasmEdge/WasmEdge/releases/download/0.14.0/WasmEdge-plugin-wasi_nn-ggml-0.14.0-windows_x86_64.zip" -OutFile "WasmEdge-plugin-wasi_nn-ggml-0.14.0-windows_x86_64.zip"
8889
Expand-Archive -Force -LiteralPath "WasmEdge-plugin-wasi_nn-ggml-0.14.0-windows_x86_64.zip" -DestinationPath "$home\WasmEdge-0.14.0-Windows"
8990
$ProgressPreference = 'Continue' ## restore default progress bars
9091
```
91-
92+
9293
5. Set the `WASMEDGE_DIR` and `WASMEDGE_PLUGIN_PATH` environment variables to point to the `WasmEdge-0.14.0-Windows` directory that you extracted above, and then build Moxin.
9394
In powershell, you can do this like so:
9495
```powershell

0 commit comments

Comments
 (0)