1

我按照这些步骤自己在 Linux 上构建 atom。

克隆 atom 后,我尝试运行script/build.
但我得到一个错误"No such file or directory"

节点 v0.10.31
Npm v0.10.31

我现在不知道如何运行这些 atom-build-script。

4

1 回答 1

1

搜索后,我找到了解决此问题的解决方案。

[1] 通过apt安装 node 后,它的命令是nodejsnode不像它推荐使用这些 build-script
[1.1] 在删除 apt 的 node 安装后,我通过我自己的 [2] 运行构建node ,找出你安装 node 的位置 [3] 运行构建脚本:
which node
/opt/node/bin/node your-atom-path/script/build



如何从atom-github-build-instructions

“/usr/bin/env: node: No such file or directory 如果您在尝试编写脚本/构建时收到此通知,您可能没有安装 Node.js, "

于 2014-09-25T13:29:13.193 回答