帮助Make错误

时间:2010-09-21 23:54:24

标签: linux ubuntu makefile

当我跑步时,我得到一个错误:

root@vagrantup:~/npm-1285112852/scripts# ./install.sh 
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  568k  100  568k    0     0   267k      0  0:00:02  0:00:02 --:--:--  466k
node cli.js cache clean
make: node: Command not found
make: *** [uninstall] Error 127

我已经安装了gcc。有什么问题?

1 个答案:

答案 0 :(得分:2)

node cli.js cache clean
make: node: Command not found

Makefile正在尝试运行命令node cli.js cache clean,但在PATH中找不到名为node的程序。要解决此问题,请安装提供node程序的任何软件包。您尝试编译的程序应该包含一个名为READMEINSTALL的文件或类似的文件,告诉您编译它的依赖项。