Getting Started
Epochly Getting Started: Installation
Advanced installation options for Epochly including virtual environments, system-wide setup, and offline installs.
Multiple ways to install Epochly.
Quick Install
pip install epochly
Installation Options
Standard Installation
pip install epochlypip install epochly --upgrade # Latest versionpip install cupy-cuda12x # For GPU support (optional)
Development Installation
git clone https://github.com/epochly/epochly.gitcd epochlypip install -e .[dev]
Verifying Installation
epochly --versionepochly doctor
Expected output:
Epochly v0.4.xPython 3.12.xSystem: Linux x86_64Enhancement Levels Available: 0-3GPU Support: Not detected
Virtual Environments
Recommended for isolated installations:
python -m venv epochly-envsource epochly-env/bin/activate # On Windows: epochly-env\\Scripts\\activatepip install epochly
Troubleshooting
ImportError: No module named 'epochly'
Check your Python environment:
which pythonpip show epochly
Permission denied
Install for current user only:
pip install --user epochly
Multiple Python versions
Specify Python version explicitly:
python3.12 -m pip install epochly