Installation
EncypherAI is available on PyPI and can be installed using uv.
Requirements
- Python 3.9 or later
- uv (Python package installer)
Basic Installation
This installs the core EncypherAI package with all required dependencies.
Development Installation
For development purposes, you can install EncypherAI with additional development dependencies:
# Clone the repository
git clone https://github.com/encypherai/encypher-ai.git
cd encypher-ai
# Install with development dependencies
uv pip install -e ".[dev]"
Dependencies
EncypherAI has the following core dependencies:
rich
: For formatted terminal output in demo scriptsrequests
: For HTTP client functionality in API examplespython-dotenv
: For environment variable management
For development, additional dependencies include:
pytest
: For running testsblack
: For code formattingisort
: For import sortingflake8
: For lintingmypy
: For static type checking
Verifying Installation
You can verify that EncypherAI is installed correctly by running:
If the installation was successful, this will print the version number of the installed package.
Next Steps
Once you have EncypherAI installed, continue to the Quick Start Guide to learn how to use the package.