Installation
How to install NexusAI-Client in your Python projects.
Installation 📦
NexusAI-Client requires Python 3.12 or higher. It is intentionally designed with zero heavy dependencies, relying exclusively on httpx and python-dotenv.
🚀 Package Managers
With uv (Recommended)
uv is the fastest Python package manager:
uv add nexusai-clientWith pip
pip install nexusai-clientWith poetry
poetry add nexusai-client🛠️ Development & Git Options
Install from Git Repository
To track the latest unreleased updates directly from GitHub:
# With uv
uv add git+https://github.com/laurentvv/NexusAI-Client.git
# With pip
pip install git+https://github.com/laurentvv/NexusAI-Client.gitLocal Editable Mode (Monorepo)
For local development or contributing to NexusAI-Client:
# With uv
uv add --editable /path/to/NexusAI-Client
# With pip
pip install -e /path/to/NexusAI-ClientIn pyproject.toml
[project]
dependencies = [
"nexusai-client>=0.4.3",
]✅ Verify Installation
Verify that the installation succeeded by running this one-line command:
python -c "import nexusai_client; print('NexusAI-Client v' + nexusai_client.__version__)"Expected output:
NexusAI-Client v0.4.3Next, proceed to the Configuration Guide to configure your API keys.