如何从 GitHub 在我的 Node.js 项目中安装 dobling PDF 到文本转换库?

问题描述 投票:0回答:1

我正在尝试在 Node.js 项目中使用 docling 库将 PDF 转换为文本。但是,我遇到了一个问题,即该包在 NPM 注册表中不可用

npm 错误代码 E404 npm 错误 404 未找到 - GET https://registry.npmjs.org/docling - 未找到

我看到 docling 托管在 GitHub 上(https://github.com/DS4SD/docling),但我不确定如何从 GitHub 安装它。

如何将此包直接从 GitHub 安装到我的 Node.js 项目中?我尝试过使用 npm install git+https://github.com/DS4SD/docling.git,但我想确认这是否是正确的方法。

任何有关如何正确安装它的帮助或建议将不胜感激!

我尝试过使用 npm install git+https://github.com/DS4SD/docling.git,但我想确认这是否是正确的方法。

reactjs node.js text-to-speech speech-to-text pdftotext
1个回答
0
投票

是的,使用

npm install git+https://github.com/DS4SD/docling.git
是直接从 GitHub 存储库安装包的正确方法。

您可以通过检查节点模块来验证

© www.soinside.com 2019 - 2024. All rights reserved.