Skip to content

Commit 03fd478

Browse files
authored
Merge pull request JamePeng#142 from patrikpatrik/patch-1
Added command prompt scenario for README.md
2 parents 5a2a0c5 + e5782b1 commit 03fd478

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

README.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,12 +110,22 @@ CMAKE_ARGS="-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS" \
110110
```
111111

112112
```powershell
113-
# Windows
113+
# Windows powershell
114114
$env:CMAKE_ARGS = "-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS"
115115
pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python.git"
116116
```
117+
118+
```command prompt
119+
# Windows command prompt
120+
set CMAKE_ARGS = "-DGGML_BLAS=ON -DGGML_BLAS_VENDOR=OpenBLAS"
121+
pip install "llama-cpp-python @ git+https://github.com/JamePeng/llama-cpp-python.git"
122+
```
117123
</details>
118124

125+
**Sanity Checking**
126+
Use this line to check if installation was successful before moving further.
127+
```python.exe -c "from llama_cpp import Llama; print('llama-cpp import OK')"```
128+
119129
<details>
120130
<summary>CLI / requirements.txt</summary>
121131

0 commit comments

Comments
 (0)