From a2e15200a5f05da91cc6911f6cd810daf90d04b5 Mon Sep 17 00:00:00 2001 From: patrikpatrik Date: Wed, 24 Jun 2026 10:27:39 -0700 Subject: [PATCH 1/5] Added command prompt scenario README.md *Updated command prompt scenario under Configuration -> Environment Variables *Sanity checking after installation of wheel --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 433e031ae..4361c857a 100644 --- a/README.md +++ b/README.md @@ -110,12 +110,21 @@ CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" \ ``` ```powershell -# Windows +# Windows powershell $env:CMAKE_ARGS = "-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python.git" ``` + +```command prompt +# Windows command prompt +set CMAKE_ARGS = "-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" +pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python.git" +``` +### Sanity Checking +`python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"` +
CLI / requirements.txt From 0116e76da361026898d743b33a4bf18e71f9ce07 Mon Sep 17 00:00:00 2001 From: patrikpatrik Date: Wed, 24 Jun 2026 10:35:34 -0700 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4361c857a..8b3daa9d8 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python ```
-### Sanity Checking +**Sanity Checking** `python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"`
From cf44079c997f6f262d150982528ecd81ab0f19ac Mon Sep 17 00:00:00 2001 From: patrikpatrik Date: Wed, 24 Jun 2026 10:36:55 -0700 Subject: [PATCH 3/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8b3daa9d8..58f13d4fc 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python ```
-**Sanity Checking** +**Sanity Checking** `python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"`
From c71baefff09a511d9df54b544555ca83f54148bc Mon Sep 17 00:00:00 2001 From: patrikpatrik Date: Wed, 24 Jun 2026 10:37:59 -0700 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 58f13d4fc..acf57289c 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python ```
-**Sanity Checking** +**Sanity Checking** `python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"`
From e5782b1c423b3aa80362165dc67abc2b9f9bf912 Mon Sep 17 00:00:00 2001 From: patrikpatrik Date: Wed, 24 Jun 2026 10:40:44 -0700 Subject: [PATCH 5/5] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index acf57289c..8968d4ecb 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,8 @@ pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python
**Sanity Checking** -`python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"` +Use this line to check if installation was successful before moving further. +```python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"```
CLI / requirements.txt