Skip to content

Installation

Requirements

  • Python 3.9 or higher
  • pip package manager

Basic Installation

Install EHDSLens from PyPI:

pip install ehdslens

Installation Options

With Visualization Support

For matplotlib and plotly charts:

pip install ehdslens[viz]

With Export Support

For advanced export features:

pip install ehdslens[export]

Full Installation

All optional dependencies:

pip install ehdslens[all]

Development Installation

For contributing to the project:

git clone https://github.com/FabioLiberti/EHDSLens.git
cd EHDSLens
pip install -e ".[dev]"

Verify Installation

import ehdslens
print(ehdslens.__version__)

Or from command line:

ehdslens --version

Troubleshooting

Common Issues

ImportError: No module named 'ehdslens'

Ensure you've installed the package in your active Python environment:

pip show ehdslens

Permission errors on Linux/Mac

Use a virtual environment:

python -m venv venv
source venv/bin/activate
pip install ehdslens

Getting Help