5

npm install osrm我已经在 Ubuntu 14.04 上安装了节点 osrm 。这已经安装了 OSRM v4.9。下一步是设置 OSRM。我正在尝试按照 wiki 中给出的步骤进行设置 - https://github.com/Project-OSRM/node-osrm

当我运行时make,出现以下错误

/bin/sh: 1: [[: not found
/bin/sh: 1: echo you need pkg-config installed: not found
make: *** [pkgconfig] Error 127

当我运行时./Makefile,我收到以下错误

./Makefile: line 3: shell: command not found
./Makefile: line 3: TOOL_ROOT?=/lib/binding: No such file or directory
./Makefile: line 4: TOOL_ROOT: command not found

我什至添加了一个 shebang 来使用 bash,因为错误似乎是由于未使用 bash

我已经安装了所有必需的库并拥有节点 v0.12

如何成功运行https://github.com/Project-OSRM/node-osrm/blob/develop/Makefile文件?

4

1 回答 1

1

我在macos上遇到了同样的问题。我发现需要安装 pkg-config 。尝试运行sudo apt-get install pkg-config安装它

于 2016-07-24T07:44:53.383 回答