问题:
rimraf 运行 rimraf node_modules 命令报错:(rimraf 前端同学可以多多了解)
rimraf : 无法加载文件 C:\Program Files\nodejs\rimraf.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=1
请参阅 https:/go.microsoft.com/fwlink/?LinkID=1
35170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ rimraf node_modules
+ ~~~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
解决方法:
1、以管理员身份打开powershell (win10系统怎么以管理员身份运行PowerShell-百度经验)
2、输入set-ExecutionPolicy RemoteSigned
3、输入Y 或者 A
4、再运行 rimraf node_modules 就可以执行脚本了