我正在尝试在Windows 7中安装bower:
$ ID=ABC
$ echo $ID
ABC
$ ID_STRING='Here is the [${ID}]'
$ echo $ID_STRING
Here is the [${ID}]
$ eval echo $ID_STRING
Here is the [ABC]
$ echo $ID, $ID_STRING, `eval echo $ID_STRING`
ABC, Here is the [${ID}], Here is the [ABC]
它返回错误:
npm install bower -g
答案 0 :(得分:0)
你有一个非常古老的NPM版本(1.2)。众所周知,NPM存在Windows问题,例如:因为Windows上不允许使用长文件路径。
首先尝试清理缓存并使用npm -g cache clean
重试,然后在其他步骤之前更新npm