在 Windows 10 上安装 JPostal 时找不到命令

发布于 2025-01-09 05:28:18 字数 1124 浏览 0 评论 0原文

我正在尝试进行设置 JPostal + Windows 10 PC 上的 LibPostal

JPostal 文档指出:命令必须执行而没有错误:

pkg-config --cflags --libs libpostal

但是,当我执行上述命令时,出现以下错误:

bash: pkg-config command not found

该文档没有说明安装任何其他软件来执行上面的命令。是不是少了点什么?我使用的是 Windows 10。

更新

我重新阅读了文档libpostal 上指出:

libpostal 支持 pkg-config,因此您可以使用 pkg-config 打印链接您的程序所需的标志..

似乎一旦我安装了 libpostal ,上面的命令就应该可以工作了。为什么它不起作用?

谢谢

I'm trying to setup JPostal + LibPostal on a Windows 10 PC.

JPostal documentation states that the following command must execute without errors:

pkg-config --cflags --libs libpostal

However, when I execute the above command I get the following error:

bash: pkg-config command not found

The documentation did not state to install any other software to execute the above command. Is there something missing? I'm on Windows 10.

Update:

I re-read the documentation on libpostal which states:

libpostal has support for pkg-config, so you can use the
pkg-config to print the flags needed to link your program against it..

It seems like once I install libpostal the above command should work. Why isn't it working?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

故人爱我别走 2025-01-16 05:28:18
bash: pkg-config command not found

显示您正在使用 WSL(适用于 Linux 的 Windows 子系统)或 Cygwin。无论哪种情况,您都必须首先使用以下命令安装 pkg-config 软件包。之后,设置将起作用。

sudo apt install pkg-config
bash: pkg-config command not found

shows that you are using WSL (Windows Subsystem for Linux) or Cygwin. In either case, you will first have to install the pkg-config package using the command below. Afterward, the setup shall work.

sudo apt install pkg-config
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文