Installation Guide
Comprehensive instructions for installing the SEU Injection Framework.
Quick Install
From PyPI (Recommended for users):
# Latest stable release (v1.1.11)
pip install seu-injection-framework
# With analysis tools
pip install "seu-injection-framework[analysis]"
# Verify
python -c "from seu_injection import ExhaustiveSEUInjector; print('Success!')"
Development Setup (Recommended):
# Install UV (Unix/macOS)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install UV (Windows)
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# Clone and install
git clone https://github.com/wd7512/seu-injection-framework.git
cd seu-injection-framework
uv sync --all-extras
# Verify
uv run python run_tests.py smoke
Installation Methods
UV Package Manager (Recommended for Development)
Fast dependency resolution and reproducible builds:
# Install UV (Unix/macOS)
curl -LsSf https://astral.sh/uv/install.sh | sh
# Install UV (Windows)
powershell -c "irm https://astral.sh/uv/install.ps1 | iex"
# Clone and install
git clone https://github.com/wd7512/seu-injection-framework.git
cd seu-injection-framework
uv sync --all-extras
pip from PyPI (Production Use)
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # Unix/macOS
# or .venv\Scripts\activate # Windows
# Install
pip install seu-injection-framework
# or with extras
pip install "seu-injection-framework[all]"
Method 3: pip from Source (Development)
Install from the repository source:
# Clone repository
git clone https://github.com/wd7512/seu-injection-framework.git
cd seu-injection-framework
# Create virtual environment (recommended)
python -m venv .venv
# Activate virtual environment
# Windows
.venv\Scripts\activate
# Unix/macOS
source .venv/bin/activate
# Install in editable mode
pip install -e ".[all]"
Method 4: Docker (Coming Soon)
Docker containers for reproducible research environments will be available in future releases.
Installation Options
Core Installation
Minimal installation with only essential dependencies:
# UV
uv sync
Includes:
PyTorch >= 2.0.0
NumPy >= 1.21.0
scikit-learn >= 1.1.0
pandas >= 1.4.0
matplotlib >= 3.5.0
Development Installation
Includes testing, linting, and development tools:
# UV
uv sync --group dev
Additional tools:
pytest, pytest-cov (testing)
ruff (linting)
ty (type checking)
bandit (security)
Notebook Installation
For Jupyter notebook support:
# UV
uv sync --group notebooks
Includes:
JupyterLab
ipywidgets
seaborn (advanced visualizations)
Complete Installation
All features including extras:
# UV (recommended)
uv sync --all-extras
Platform-Specific
Windows
Python 3.9+, Windows 10/11+
CUDA Support:
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
macOS
Python 3.9+, macOS 11+, Xcode Command Line Tools
Apple Silicon (M1/M2/M3) supports MPS acceleration.
Linux
Python 3.9+, GCC compiler
CUDA Support:
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
Verification
Verify your installation:
# Run smoke tests
uv run python run_tests.py smoke
# Or with standard Python
python -m pytest tests/smoke/ -v
# Quick import test
python -c "from seu_injection import ExhaustiveSEUInjector; print('Installation successful!')"
GPU Support
CUDA Setup
For NVIDIA GPU acceleration:
# Check CUDA availability
python -c "import torch; print(f'CUDA available: {torch.cuda.is_available()}')"
# Check CUDA version
python -c "import torch; print(f'CUDA version: {torch.version.cuda}')"
# Install CUDA-enabled PyTorch
pip install torch torchvision --index-url https://download.pytorch.org/whl/cu121
Apple Silicon (MPS)
Metal Performance Shaders (MPS) acceleration is automatically available on Apple Silicon Macs:
import torch
print(f'MPS available: {torch.backends.mps.is_available()}')
Troubleshooting
Common Issues
Issue: “No module named pytest” or Tests Fail Immediately
Problem: You ran uv sync without --all-extras, missing development dependencies
Solution:
# Install ALL dependencies including testing tools
uv sync --all-extras
# Verify testing tools are available
uv run pytest --version
uv run python -c "import pytest; print('pytest available')"
Issue: “No module named ‘testing’” Import Errors
Problem: Using an older version of the repository that lacks proper package structure
Solution:
# Switch to latest development branch
git checkout ai_refactor
git pull origin ai_refactor
# Reinstall with all dependencies
uv sync --all-extras
# Verify the testing module is importable
uv run python -c "from testing import get_example_network; print('testing module available')"
Issue: Individual Test Files Fail with Coverage Errors
Problem: Running single test files may fail coverage requirements even though code is correct
Solutions:
# Option 1: Run tests without coverage
uv run pytest tests/test_injector.py --no-cov -v
# Option 2: Run full test suite (recommended)
uv run pytest tests/ -v
# Option 3: Use the custom test runner
uv run python run_tests.py unit
Issue: Assert vs ValueError Security Warnings
Problem: Static analysis tools warn about assert statements in production code
Solution: This has been fixed in the ai_refactor branch. The framework now uses proper if/raise ValueError patterns instead of assert statements for input validation, ensuring validation works even with Python optimization flags.
Issue: ModuleNotFoundError for seu_injection
Problem: Python cannot find the seu_injection module
Solution:
Common Issues
Missing pytest: Install all extras with uv sync --all-extras
Import errors: Reinstall in editable mode: pip install -e .
CUDA out of memory: Reduce batch size or use device='cpu'
Permission denied: Use virtual environment or pip install --user
Slow pip: Switch to UV package manager (10-100x faster)
Getting Help
If you encounter issues not covered here:
Check existing issues: GitHub Issues
Run diagnostics:
python -c "import sys; print(sys.version)" python -c "import torch; print(torch.__version__)" uv --version
Create a new issue: Include your Python version, OS, and error messages
Next Steps
After successful installation:
Quick Start: Follow the Quickstart Tutorial
API Documentation: Review the API Reference
Examples: Explore Example Scripts
Research: Check out Research Notebooks
System Requirements
Minimum Requirements
Python 3.9+
4 GB RAM
1 GB free disk space
CPU with SSE4.2 support
Recommended Requirements
Python 3.11+
8 GB RAM
5 GB free disk space
NVIDIA GPU with 4GB+ VRAM (for GPU acceleration)
CUDA 11.8 or later
Tested Platforms
✅ Windows 10/11 (x64)
✅ macOS 11+ (Intel & Apple Silicon)
✅ Ubuntu 20.04/22.04 LTS
✅ Debian 11+
✅ Fedora 35+
Version Compatibility
Python Version |
Status |
Notes |
|---|---|---|
3.9 |
✅ Supported |
Minimum required version |
3.10 |
✅ Supported |
Fully tested |
3.11 |
✅ Supported |
Recommended |
3.12 |
✅ Supported |
Latest features |
3.13+ |
⚠️ Experimental |
May work but not officially tested |
Development Setup
For contributors and developers:
# Clone with development tools
git clone https://github.com/wd7512/seu-injection-framework.git
cd seu-injection-framework
# Install with all development dependencies
uv sync --all-extras
# Install pre-commit hooks (coming soon)
# pre-commit install
# Run full test suite
uv run python run_tests.py all
# Check code quality
uv run ruff check src/ tests/
Uninstallation
To remove the framework:
# If installed with pip
pip uninstall seu-injection-framework
# Remove virtual environment (Unix/macOS)
rm -rf .venv
# Remove virtual environment (Windows)
rmdir /s .venv
# Remove cloned repository (Unix/macOS)
cd ..
rm -rf seu-injection-framework
# Remove cloned repository (Windows)
cd ..
rmdir /s seu-injection-framework
Last Updated: November 2025
Version: 1.0.0 (Phase 3 Complete)