Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Homebrewを使用して Node.js をインストールし、次にnpm installGrunt とその依存関係をインストールしましたが、インストールが完了した後、Grunt を実行できませんでした。
npm install
zsh: correct 'grunt' to 'grn' ÆnyaeÅ? n zsh: command not found: grunt
このエラーが発生しないように Grunt をインストールする適切な方法は何ですか?
コマンドラインで Grunt を使用するには、コマンドライン インターフェイスをインストールする必要があります。
npm install -g grunt-cli
フラグはモジュールをグローバルにインストールするための-gもので、Grunt の PATH 変数も作成します。
-g