我无法安装angula,我尝试使用clear npm cache npm cache clean --force。但仍然无法安装。请帮我 enter image description here
我正在使用节点版本-8.11.3 Npm版本-6.1.0
答案 0 :(得分:0)
添加一个名为NODE_PATH
的环境变量,并将其设置为%USERPROFILE%\Application Data\npm\node_modules
(Windows XP),%AppData%\npm\node_modules
(Windows 7/8/10)或npm最终在其上安装模块的位置您的Windows风格。要一劳永逸地完成此操作,请将其添加为“系统属性”对话框的“高级”选项卡中的“系统”变量(运行control.exe sysdm.cpl,System,3
)。
Windows 7+中的快速解决方案是仅运行:
rem for future
setx NODE_PATH %AppData%\npm\node_modules
rem for current session
set NODE_PATH=%AppData%\npm\node_modules
值得一提的是,NODE_PATH
仅在Node应用程序中导入模块时使用。如果要在CLI中使用全局安装的模块的二进制文件,则需要将其也添加到PATH
中,但没有node_modules
部分(例如Windows 7/8/10中的%AppData%\npm
) )。
答案 1 :(得分:0)
请确保已按照以下方式配置环境变量
C:\Users\user\AppData\Roaming\npm\node_modules\angular-cli\bin;
关闭cmd,然后重新打开一次。