尝试从 npm 安装 Yeoman 时出现 ENOENT 错误

ENOENT error when trying to install Yeoman from npm

我正在尝试在 cmd 中使用以下命令安装 Yeoman:

npm install --global yo

我得到以下信息:

npm WARN deprecated npmconf@2.1.2: this package has been reintegrated into npm and is now out of date with respect to npm
npm ERR! Windows_NT 6.1.7601
npm ERR! argv "C:\Program Files\nodejs\node.exe" "C:\{userdir}\AppData\Roaming\npm\node_modules\npm\bin\npm-cli.js" "install" "--global" "yo"
npm ERR! node v4.4.4
npm ERR! npm  v3.9.0
npm ERR! path C:\{userDIr}\AppData\Roaming\npm\node_modules\yo\lib\cli.js
npm ERR! code ENOENT
npm ERR! errno -4058
npm ERR! syscall chmod

npm ERR! enoent ENOENT: no such file or directory, chmod 'C:{userDir}\AppData\Roaming\npm\node_modules\yo\lib\cli.js'
npm ERR! enoent ENOENT: no such file or directory, chmod 'C:\{userDir}\AppData\Roaming\npm\node_modules\yo\lib\cli.js'
npm ERR! enoent This is most likely not a problem with npm itself
npm ERR! enoent and is related to npm not being able to find a file.
npm ERR! enoent

npm ERR! Please include the following file with any support request:
npm ERR!     C:\{userDir}\npm-debug.log

已安装以下内容:

我的 PC 运行s 在 Windows 7 x64 上。

我试过的解决方案:

  1. 我运行

    npm 缓存清除

但运气不好。

  1. 我卸载并重新安装了 node.js,但也没有任何改变。
  2. 我也尝试了以下方法:

    • 删除了 node_modules 文件夹

    • 已删除 C:\\AppData\Roaming\npm-cache 文件夹

    • 在 C:\AppData\Roaming\npm 文件夹的属性中未选中并应用只读
  3. 我在这里阅读了所有相关问题的答案,但没有任何帮助。

之前,我用npm成功安装了bowerv1.7.9和g运行tv1.2.0,执行

npm install --global yo bower grunt-cli

任何帮助将不胜感激。

根据 https://github.com/npm/npm/issues/10312 and https://github.com/yeoman/yo/issues/437,问题是 yo v1.8.2 .

正在执行

npm install --global yo@1.8.1

而不是

npm install --global yo

问题已解决,不过可能很快就会发布修补程序。