mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-08-17 21:51:27 -04:00
gguf-py: fixed local detection of gguf package (#11180)
* updated path to gguf package for non-installed setups * added reader.py to readme * Bumped gguf version to 0.15.0
This commit is contained in:
committed by
GitHub
parent
2739a71e4b
commit
c05e8c9934
@@ -11,8 +11,8 @@ from pathlib import Path
|
||||
import numpy as np
|
||||
|
||||
# Necessary to load the local gguf package
|
||||
if "NO_LOCAL_GGUF" not in os.environ and (Path(__file__).parent.parent.parent / 'gguf-py').exists():
|
||||
sys.path.insert(0, str(Path(__file__).parent.parent))
|
||||
if "NO_LOCAL_GGUF" not in os.environ and (Path(__file__).parent.parent.parent.parent / 'gguf-py').exists():
|
||||
sys.path.insert(0, str(Path(__file__).parent.parent.parent))
|
||||
|
||||
import gguf
|
||||
|
||||
|
Reference in New Issue
Block a user