在 Windows 10 上安装 JPostal 时找不到命令
我正在尝试进行设置 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 forpkg-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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
显示您正在使用 WSL(适用于 Linux 的 Windows 子系统)或 Cygwin。无论哪种情况,您都必须首先使用以下命令安装 pkg-config 软件包。之后,设置将起作用。
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.