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, proceed to the Quick Start Guide guide to learn how to use Glyph Forge.