我在本地和全球安装了grunt-cli,我可以在本地和全局路径中看到相同的内容。
测试安装是否有效,当我尝试运行时
grunt -h
它显示以下
>> Local Npm module "grunt-cli" not found. Is it installed?
Grunt: The JavaScript Task Runner (v0.4.5)
Usage
grunt [options] [task [task ...]]
Options
--help, -h Display this help text.
--base Specify .......
当我运行grunt -v时,以下是其输出的一部分
Registering "grunt-cli" local Npm module tasks.
Reading /Users/cominventor/myproject/node_modules/grunt-cli/package.json...OK
Parsing /Users/cominventor/myproject/node_modules/grunt-cli/package.json...OK
>> Local Npm module "grunt-cli" not found. Is it installed?
要在本地安装,我运行了以下命令(由@Aruna建议)
npm install grunt --save-dev
npm install grunt-cli --save-dev
并获得第二个命令的以下输出
npm ERR! Darwin 16.0.0
npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "grunt-cli" "--save-dev"
npm ERR! node v6.6.0
npm ERR! npm v3.10.7
npm ERR! code ENOSELF
npm ERR! Refusing to install grunt-cli as a dependency of itself
npm ERR!
有什么线索我在这里缺少什么?
答案 0 :(得分:1)
你是如何安装咕噜声的?
您是否尝试过如下全局和本地模块,
<强>全球强>
npm install -g grunt-cli
本地强>
npm install grunt --save-dev
npm install grunt-cli --save-dev