Fatal error: Unable to find local grunt
I removed the old grunt first,and I install the new grunt.But I got an error:
D:wwwgrunt-testgrunt grunt-cli: The grunt command line interface. (v0.1.4)
Fatal error: Unable to find local grunt.
If you're seeing this message, either a Gruntfile wasn't found or grunt hasn't been installed locally to your project. For more information about installing and configuring grunt, please see the Getting Started guide: http://gruntjs.com/getting-started
Is there haven't a grunt in my system path, or something else? I tried to re-install it for few times.
I think you don't have a grunt.js
file in your project directory. Use grunt:init
, which gives you options such as jQuery, node,commonjs
. Select what you want, then proceed. This really works. For more information you can visit this.
Do this:
1. npm install -g grunt
2. grunt:init ( you will get following options ):
jquery: A jQuery plugin
node: A Node module
commonjs: A CommonJS module
gruntplugin: A Grunt plugin
gruntfile: A Gruntfile (grunt.js)
3 .grunt init:jquery (if you want to create a jQuery related project.).
It should work.
Solution for v1.4:
1. npm install -g grunt-cli
2. npm init
fill all details and it will create a package.json file.
3. npm install grunt (for grunt dependencies.)
Edit : Updated solution for new versions:
npm install grunt --save-dev
Install Grunt in node_modules rather than globally
Unable to find local Grunt
likely means that you have installed Grunt globally.
The Grunt CLI insists that you install grunt in your local node_modules directory, so Grunt is local to your project.
This will fail:
npm install -g grunt
Do this instead:
npm install grunt --save-dev
Do
npm install
to install Grunt locally in ./node_modules
(and everything else specified in the package.json
file)
上一篇: 我如何安装先前版本的npm软件包?
下一篇: 致命错误:无法找到本地咕噜声