帮助解决 Make 错误

发布于 2024-09-24 09:16:16 字数 453 浏览 3 评论 0原文

当我运行 make 时出现错误:

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。问题是什么?

When I run make I get an error:

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

I have installed gcc. What is the problem?

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

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

发布评论

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

评论(1

∞梦里开花 2024-10-01 09:16:16
node cli.js 缓存清理
make:节点:找不到命令

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

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

The Makefile is trying to run the command node cli.js cache clean, but can't find a program called node in your PATH. To fix this, install whatever package provides the node program. The program you're trying to compile should contain a file called README or INSTALL or something like that that tells you what the dependencies are to compile it.

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