mirror of
https://github.com/allenai/olmocr.git
synced 2025-06-27 04:00:02 +00:00
28 lines
509 B
Markdown
28 lines
509 B
Markdown
![]() |
Installation
|
||
|
============
|
||
|
|
||
|
**my-package** supports Python >= 3.8.
|
||
|
|
||
|
## Installing with `pip`
|
||
|
|
||
|
**my-package** is available [on PyPI](https://pypi.org/project/my-package/). Just run
|
||
|
|
||
|
```bash
|
||
|
pip install my-package
|
||
|
```
|
||
|
|
||
|
## Installing from source
|
||
|
|
||
|
To install **my-package** from source, first clone [the repository](https://github.com/allenai/python-package-template):
|
||
|
|
||
|
```bash
|
||
|
git clone https://github.com/allenai/python-package-template.git
|
||
|
cd python-package-template
|
||
|
```
|
||
|
|
||
|
Then run
|
||
|
|
||
|
```bash
|
||
|
pip install -e .
|
||
|
```
|