-
-
Notifications
You must be signed in to change notification settings - Fork 8
gguf loader installation guide
github-actions[bot] edited this page Jul 30, 2025
·
1 revision
This guide will help you install GGUF Loader 2.0.0 on your system.
pip install ggufloaderThat's it! You can now run GGUF Loader with:
ggufloader- Python: 3.8 or higher
- RAM: 4GB (8GB+ recommended for larger models)
- Storage: 2GB free space for models
- OS: Windows 10/11, macOS 10.14+, or Linux
- Python: 3.10 or higher
- RAM: 16GB or more
- GPU: NVIDIA GPU with CUDA support (optional but recommended)
- Storage: 10GB+ free space for multiple models
If you don't have Python installed:
- Download Python from python.org
- Run the installer and check "Add Python to PATH"
- Verify installation:
python --version
# Using Homebrew (recommended)
brew install python
# Or download from python.orgsudo apt update
sudo apt install python3 python3-pip# Create virtual environment
python -m venv ggufloader-env
# Activate it
# Windows:
ggufloader-env\Scripts\activate
# macOS/Linux:
source ggufloader-env/bin/activatepip install ggufloaderggufloader --versionggufloaderThis will open the GGUF Loader application with the Smart Floating Assistant addon already loaded.
- Download a GGUF model (e.g., from Hugging Face)
- Click "Select GGUF Model" in the application
- Choose your model file
- Wait for loading (may take a few minutes)
- Start chatting!
For better performance with larger models, you can enable GPU acceleration:
# Uninstall CPU version
pip uninstall llama-cpp-python
# Install GPU version
pip install llama-cpp-python --extra-index-url https://abetlen.github.io/llama-cpp-python/whl/cu121# Uninstall CPU version
pip uninstall llama-cpp-python
# Install Metal version
CMAKE_ARGS="-DLLAMA_METAL=on" pip install llama-cpp-pythonIf you want to contribute or modify GGUF Loader:
# Clone the repository
git clone https://github.com/gguf-loader/gguf-loader.git
cd gguf-loader
# Install in development mode
pip install -e .
# Install development dependencies
pip install -e .[dev]# Install to specific directory
pip install --target /path/to/directory ggufloader
# Add to Python path
export PYTHONPATH="/path/to/directory:$PYTHONPATH"# Windows
python -m pip install ggufloader
# macOS/Linux
python3 -m pip install ggufloader# Use --user flag
pip install --user ggufloader
# Or use virtual environment (recommended)
python -m venv venv
source venv/bin/activate # Linux/macOS
# or
venv\Scripts\activate # Windows
pip install ggufloader# Update pip first
pip install --upgrade pip
# Then install
pip install ggufloader# Use trusted hosts
pip install --trusted-host pypi.org --trusted-host pypi.python.org ggufloader-
Issue: "Microsoft Visual C++ 14.0 is required"
- Solution: Install Microsoft C++ Build Tools
-
Issue: "Command line tools not found"
-
Solution:
xcode-select --install
-
Solution:
-
Issue: Missing system dependencies
# Ubuntu/Debian sudo apt install build-essential python3-dev # CentOS/RHEL sudo yum groupinstall "Development Tools" sudo yum install python3-devel
pip install --upgrade ggufloaderggufloader --versionpip install ggufloader==1.0.0 # Replace with desired versionpip uninstall ggufloader# List installed packages
pip list
# Remove specific dependencies if not needed elsewhere
pip uninstall llama-cpp-python PySide6 pyautogui pyperclip# Windows
rmdir /s "%APPDATA%\ggufloader"
# macOS/Linux
rm -rf ~/.config/ggufloader
rm -rf ~/.local/share/ggufloader# Create conda environment
conda create -n ggufloader python=3.10
conda activate ggufloader
# Install via pip (no conda package yet)
pip install ggufloader# Install pipx if not already installed
pip install pipx
# Install ggufloader in isolated environment
pipx install ggufloader
# Run
ggufloader# Download source
wget https://github.com/gguf-loader/gguf-loader/archive/v2.0.0.tar.gz
tar -xzf v2.0.0.tar.gz
cd gguf-loader-2.0.0
# Install
pip install .After installation:
- Read the Quick Start Guide to get up and running
- Check out the User Guide for detailed usage instructions
- Explore Addon Development to create custom addons
- Join our community for support and discussions
- 📖 Check the Troubleshooting Guide
- 🐛 Report installation issues
- 💬 Ask for help in discussions
- 📧 Contact us: [email protected]
Welcome to GGUF Loader! 🎉