在 Windows 10 上安装 JPostal 时找不到命令
Command Not Found when Installing JPostal on Windows 10
我正在 to setup JPostal + LibPostal Windows 10 PC 上尝试。
JPostal documentation states 以下命令必须正确执行:
pkg-config --cflags --libs libpostal
但是,当我执行上述命令时,出现以下错误:
bash: pkg-config command not found
文档中没有说明安装任何其他软件来执行上述命令。有什么东西不见了吗?我在 Windows 10.
更新:
我在 libpostal
上重读了 the documentation,其中指出:
libpostal
has support for pkg-config
, so you can use the
pkg-config to print the flags needed to link your program against it..
似乎一旦我安装 libpostal
上面的命令就应该可以工作了。为什么它不起作用?
谢谢
bash: pkg-config command not found
表明您正在使用 WSL(Windows Linux 的子系统)或 Cygwin。无论哪种情况,您都必须首先使用以下命令安装 pkg-config 包。之后,设置将起作用。
sudo apt install pkg-config
我正在 to setup JPostal + LibPostal Windows 10 PC 上尝试。
JPostal documentation states 以下命令必须正确执行:
pkg-config --cflags --libs libpostal
但是,当我执行上述命令时,出现以下错误:
bash: pkg-config command not found
文档中没有说明安装任何其他软件来执行上述命令。有什么东西不见了吗?我在 Windows 10.
更新:
我在 libpostal
上重读了 the documentation,其中指出:
libpostal
has support forpkg-config
, so you can use the pkg-config to print the flags needed to link your program against it..
似乎一旦我安装 libpostal
上面的命令就应该可以工作了。为什么它不起作用?
谢谢
bash: pkg-config command not found
表明您正在使用 WSL(Windows Linux 的子系统)或 Cygwin。无论哪种情况,您都必须首先使用以下命令安装 pkg-config 包。之后,设置将起作用。
sudo apt install pkg-config