2

我已经使用安装程序在 Windows 上安装了 Node.js,并尝试运行 npm 命令,但它不会运行。当我输入以下内容时。

npm install socket.io

我懂了

module.js:337
    throw new Error("Cannot find module '" + request + "'");
          ^
Error: Cannot find module 'C:\Windows\System32\node_modules\npm\bin\npm-cli.js'
    at Function._resolveFilename (module.js:337:11)
    at Function._load (module.js:279:25)
    at Array.0 (module.js:484:10)
    at EventEmitter._tickCallback (node.js:190:38)

当我输入

npm 

我懂了

module.js:337
    throw new Error("Cannot find module '" + request + "'");
          ^
Error: Cannot find module 'C:\Windows\System32\node_modules\npm\bin\npm-cli.js'
    at Function._resolveFilename (module.js:337:11)
    at Function._load (module.js:279:25)
    at Array.0 (module.js:484:10)
    at EventEmitter._tickCallback (node.js:190:38)

我检查了一下,我在正确的位置有 npm-cli.js 文件。我如何让 npm 命令工作。我需要为 npm-cli.js 文件设置一个环境变量吗?如果我这样做,你能引导我完成这个过程吗?

4

1 回答 1

1

我忘记将 NodeJS 和 NPM 添加到我的系统变量中。

于 2013-11-23T17:58:36.873 回答