DS4SD / docling-parse

Simple package to extract text with coordinates from programmatic PDFs
MIT License
30 stars 8 forks source link

installing `pybind11` as a build time python package dependency #25

Closed shubhbapna closed 1 month ago

shubhbapna commented 2 months ago

When we try to build docling-parse from source, it tries to clone the pybind11 repository and then set the includes path. However, we are running this build in a network isolated environment which causes the clone step to fail.

An alternate to this would be to install pybind11 as a build time python package dependency and use its API in build.py to set it up:

tiran commented 2 months ago

I made a similar change to Triton a while ago, https://github.com/triton-lang/triton/pull/4450