3

这是什么意思?

throw new Error("Cannot find module '" + request + "'");

当我安装一个软件包时,我遇到了这个错误!为什么?

我是usig快递。

例如

npm install -g 时刻

m = 要求('时刻');

4

1 回答 1

4

如果你想在脚本中使用它,你必须在本地安装它。如果要在 shell 中使用它,请全局安装。

http://blog.nodejs.org/2011/03/23/npm-1-0-global-vs-local-installation/

基本上,在npm install moment没有-g标志的情况下运行它会起作用。

于 2012-06-06T20:00:19.597 回答