olmocr/docs/source/installation.md

28 lines
446 B
Markdown
Raw Permalink Normal View History

2024-09-17 07:53:43 -07:00
Installation
============
2024-09-17 15:06:59 +00:00
**pdelfin** supports Python >= 3.8.
2024-09-17 07:53:43 -07:00
## Installing with `pip`
2024-09-17 15:06:59 +00:00
**pdelfin** is available [on PyPI](https://pypi.org/project/pdelfin/). Just run
2024-09-17 07:53:43 -07:00
```bash
2024-09-17 15:06:59 +00:00
pip install pdelfin
2024-09-17 07:53:43 -07:00
```
## Installing from source
2024-09-17 15:06:59 +00:00
To install **pdelfin** from source, first clone [the repository](https://github.com/allenai/pdelfin):
2024-09-17 07:53:43 -07:00
```bash
2024-09-17 15:06:59 +00:00
git clone https://github.com/allenai/pdelfin.git
cd pdelfin
2024-09-17 07:53:43 -07:00
```
Then run
```bash
pip install -e .
```