Commit 0fc0ab29 authored by Your Name's avatar Your Name

Fix pip install command quoting

parent e35fd018
...@@ -4598,7 +4598,7 @@ def main(): ...@@ -4598,7 +4598,7 @@ def main():
print(f"Try updating llama.cpp: pip install llama-cpp-python --upgrade") print(f"Try updating llama.cpp: pip install llama-cpp-python --upgrade")
print(f"Or rebuild with latest ggml:") print(f"Or rebuild with latest ggml:")
print(f" pip install llama-cpp-python --force-reinstall --no-cache-dir \\") print(f" pip install llama-cpp-python --force-reinstall --no-cache-dir \\")
print(f" CMAKE_ARGS=\"-DGGML_VULKAN=ON\" \\") print(f" CMAKE_ARGS='-DGGML_VULKAN=ON' \\")
print(f" FORCE_CMAKE=1") print(f" FORCE_CMAKE=1")
print(f"Image model will load on first request") print(f"Image model will load on first request")
else: else:
...@@ -5002,7 +5002,7 @@ def main(): ...@@ -5002,7 +5002,7 @@ def main():
print(f"Try updating llama.cpp: pip install llama-cpp-python --upgrade") print(f"Try updating llama.cpp: pip install llama-cpp-python --upgrade")
print(f"Or rebuild with latest ggml:") print(f"Or rebuild with latest ggml:")
print(f" pip install llama-cpp-python --force-reinstall --no-cache-dir \\") print(f" pip install llama-cpp-python --force-reinstall --no-cache-dir \\")
print(f" CMAKE_ARGS=\"-DGGML_VULKAN=ON\" \\") print(f" CMAKE_ARGS='-DGGML_VULKAN=ON' \\")
print(f" FORCE_CMAKE=1") print(f" FORCE_CMAKE=1")
print(f"Image model will load on first request") print(f"Image model will load on first request")
else: else:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment