当从npm安装Yeoman时出现ENOENT错误

我正在尝试在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 

以下是安装的:

  • Node.js v4.4.4
  • npm v2.15.1,v3.9.0(我尝试了两个版本,我有完全相同的输出消息)

而我的电脑在Windows 7 x64上运行。

我试过的解决scheme

  1. 我跑

    npmcaching清除

但没有运气。

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

    • 删除了node_modules文件夹

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

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

在此之前,我用npm成功安装了bower v1.7.9和grunt v1.2.0,执行

 npm install --global yo bower grunt-cli 

任何帮助将不胜感激。

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

执行

 npm install --global yo@1.8.1 

代替

 npm install --global yo 

解决了这个问题,尽pipe可能会有一个即将发布的修补程序。