Installation
The most recent release can be installed from PyPI with uv:
$ uv pip install biolexica
or with pip:
$ python3 -m pip install biolexica
Installing from git
The most recent code and data can be installed directly from GitHub with uv:
$ uv --preview pip install git+https://github.com/biopragmatics/biolexica.git
or with pip:
$ UV_PREVIEW=1 python3 -m pip install git+https://github.com/biopragmatics/biolexica.git
Note
The UV_PREVIEW environment variable is required to be set until the uv build
backend becomes a stable feature.
Installing for development
To install in development mode with uv:
$ git clone git+https://github.com/biopragmatics/biolexica.git
$cd biolexica
$ uv --preview pip install -e .
or with pip:
$ UV_PREVIEW=1 python3 -m pip install -e .