Installation

Requirements

  • Python 3.9 or higher

  • pip package manager

Install from PyPI

The recommended way to install Glyph Forge is via pip:

pip install glyph-forge

This will install the latest stable version from PyPI.

Install Development Version

To install the latest development version from GitHub:

pip install git+https://github.com/Devpro-LLC/glyph-forge-client.git

Install with Optional Dependencies

For testing:

pip install glyph-forge[test]

For documentation:

pip install glyph-forge[docs]

All optional dependencies:

pip install glyph-forge[test,docs]

Verify Installation

Verify the installation by checking the version:

import glyph_forge
print(glyph_forge.__version__)

Or from the command line:

python -c "import glyph_forge; print(glyph_forge.__version__)"

Next Steps

After installation, you can:

  1. Learn the fundamentals in the How to Use guide (recommended for beginners)

  2. Jump straight to the Quick Start Guide guide for a quick walkthrough

  3. Review the Authentication guide if you need API access