mirror of
https://github.com/allenai/olmocr.git
synced 2025-07-05 08:03:22 +00:00
28 lines
446 B
Markdown
28 lines
446 B
Markdown
Installation
|
|
============
|
|
|
|
**pdelfin** supports Python >= 3.8.
|
|
|
|
## Installing with `pip`
|
|
|
|
**pdelfin** is available [on PyPI](https://pypi.org/project/pdelfin/). Just run
|
|
|
|
```bash
|
|
pip install pdelfin
|
|
```
|
|
|
|
## Installing from source
|
|
|
|
To install **pdelfin** from source, first clone [the repository](https://github.com/allenai/pdelfin):
|
|
|
|
```bash
|
|
git clone https://github.com/allenai/pdelfin.git
|
|
cd pdelfin
|
|
```
|
|
|
|
Then run
|
|
|
|
```bash
|
|
pip install -e .
|
|
```
|