我想安装在ubuntu上的铬自动保存插件。当我尝试用这些步骤https://github.com/NV/chrome-devtools-autosave-server安装它时,我发现了一些错误.
在ubuntu 12.10上没有安装节点和npm。所以我用这些命令安装了npm和node。
sudo apt-get install npm
sudo apt-get install node我试着安装autosave
这是输出:
sudo npm install -g autosave
npm http GET https://registry.npmjs.org/autosave
npm http 304 https://registry.npmjs.org/autosave
npm http GET https://registry.npmjs.org/commander
npm http 304 https://registry.npmjs.org/commander
/usr/local/bin/autosave -> /usr/local/lib/node_modules/autosave/bin/autosave
> autosave@1.0.2 install /usr/local/lib/node_modules/autosave
> node ./scripts/install.js
npm ERR! error installing autosave@1.0.2
npm WARN This failure might be due to the use of legacy binary "node"
npm WARN For further explanations, please read
npm WARN /usr/share/doc/nodejs/README.Debian
npm WARN
npm ERR! autosave@1.0.2 install: `node ./scripts/install.js`
npm ERR! `sh "-c" "node ./scripts/install.js"` failed with 1
npm ERR!
npm ERR! Failed at the autosave@1.0.2 install script.
npm ERR! This is most likely a problem with the autosave package,
npm ERR! not with npm itself.
npm ERR! Tell the author that this fails on your system:
npm ERR! node ./scripts/install.js
npm ERR! You can get their info via:
npm ERR! npm owner ls autosave
npm ERR! There is likely additional logging output above.
npm ERR!
npm ERR! System Linux 3.5.0-17-generic
npm ERR! command "/usr/bin/nodejs" "/usr/bin/npm" "install" "-g" "autosave"
npm ERR! cwd /home/naczu
npm ERR! node -v v0.6.19
npm ERR! npm -v 1.1.4
npm ERR! code ELIFECYCLE
npm ERR! message autosave@1.0.2 install: `node ./scripts/install.js`
npm ERR! message `sh "-c" "node ./scripts/install.js"` failed with 1
npm ERR! errno {}
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /home/naczu/npm-debug.log
npm not ok这是README.debian
nodejs for Debian
=================
packaged modules
----------------
The global search path for modules is
/usr/lib/nodejs
Future packages of node modules will use that directory,
so it should be used wisely.
user modules
------------
Node looks for modules in ./node_modules directory first;
please read node#modules documentation carefully for more information.
Node does not look for modules in /usr/local/lib/node_modules,
where npm put them.
Please read npm-link(1) of npm package, to understand how to properly
use npm-installed modules in a project.
Note that require.paths is not supported in future node versions.
See also node(1) for more information about NODE_PATH.
nodejs command
--------------
The upstream name for the Node.js interpreter command is "node".
In Debian the interpreter command has been changed to "nodejs".
This was done to prevent a namespace collision: other commands use
the same name in their upstreams, such as ax25-node from the "node"
package.
Scripts calling Node.js as a shell command must be changed to instead
use the "nodejs" command.发布于 2012-11-01 14:05:36
好了,我解决了我的问题。我找到了一个更好的延期。那是丁格尔。您可以在chrome工具上编辑和自动保存js和css文件。那真是太有用了。这是链接。也许有些人像我一样需要这个。单击此处
https://askubuntu.com/questions/206489
复制相似问题