Skip to content

Installation

Prerequisites

  • Python: 3.10 or higher
  • pip: Latest version recommended

Basic Installation

pip install empathy-framework

This installs the core Empathy Framework with basic functionality.

Installation Options

With LLM Support

pip install empathy-framework[llm]

Includes Anthropic Claude and OpenAI SDK.

With Healthcare Support

pip install empathy-framework[healthcare]

Includes FHIR client, HL7 parsing, HIPAA audit logging.

pip install empathy-framework[full]

Includes everything: LLM providers, healthcare, webhooks.

Verification

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

Or use the CLI:

empathy-framework version

Next Steps