Created
June 9, 2026 07:10
-
-
Save michaelneale/c9eff426a50407921ba5f67043a10161 to your computer and use it in GitHub Desktop.
windows-install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Paste this in PowerShell: | |
| $env:MESH_LLM_INSTALL_FLAVOR = "cuda" | |
| irm https://raw.githubusercontent.com/Mesh-LLM/mesh-llm/main/install.ps1 | iex | |
| Open a new PowerShell window if mesh-llm is not on PATH yet, then run: | |
| mesh-llm serve ` | |
| --model Qwen2.5-3B-Instruct-Q4_K_M ` | |
| --ctx-size 32768 ` | |
| --auto | |
| Check it: | |
| curl http://localhost:9337/v1/models | |
| Console: | |
| http://localhost:3131 | |
| Use Qwen2.5-3B-Instruct-Q4_K_M. That is in the current built-in recommended catalog, maps to Qwen/Qwen2.5-3B-Instruct-GGUF@main:q4_k_m, and is the | |
| right small CUDA-friendly choice for an RTX 4060 8 GB with 32k context. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment