尝试创建我的第一个 node.js 应用程序:/bin/sh: 1: fpm: 未找到
Trying to create my first node.js application: /bin/sh: 1: fpm: not found
我已经按照以下步骤创建了我的第一个 node.js 应用程序:
https://www.codementor.io/javascript/tutorial/how-to-create-cross-platform-desktop-apps-with-nwjs
问题:我在 运行 gulp pack:linux64:deb
之后的 klout/dist
目录找不到任何东西,有帮助吗?
这是gulp pack:linux64:deb
之后的输出:
https://gist.github.com/Ziiweb/ac0708acf689b7d6491d
这是gulp build:linux64
之后的输出
根据您提供的日志,缺少 fpm
。您必须全局安装它才能使构建工作
npm install -g fpm
我已经按照以下步骤创建了我的第一个 node.js 应用程序:
https://www.codementor.io/javascript/tutorial/how-to-create-cross-platform-desktop-apps-with-nwjs
问题:我在 运行 gulp pack:linux64:deb
之后的 klout/dist
目录找不到任何东西,有帮助吗?
这是gulp pack:linux64:deb
之后的输出:
https://gist.github.com/Ziiweb/ac0708acf689b7d6491d
这是gulp build:linux64
根据您提供的日志,缺少 fpm
。您必须全局安装它才能使构建工作
npm install -g fpm