1

我更新到 TACO 10 & VS 2015 2。由于路径较长,我收到以下错误。

1>  Installing npm 2.14.9. This could take a few minutes...
1>  Failed: The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.

有没有办法告诉 VS 使用全局安装的 npm。我尝试安装.NET Web Development and Tools Blog和 c将路径命令挂在 External Web Tools options 上

我也尝试取消选中使用沙箱节点,但 VS 仍然尝试安装 npm。

有任何想法吗?

4

1 回答 1

0

Windows 不喜欢npm在 npm v1.x 和 v2.x 中嵌套依赖树的方式,最终它们会抛出这个错误。嵌套的依赖树会创建很长的路径名,并且会在 Windows 中达到上限。

您应该改用 npm v3.x,npm 使用 v3.x 转到平面依赖结构,这个问题就会消失。

于 2016-06-17T18:51:18.827 回答