yarn : 无法加载文件 npm\yarn.ps1
记一次 yarn 错误排查解决。在 Windows 系统中使用 Windows PowerShell 执行 yarn 命令,报错为:
yarn : 无法加载文件 C:\Users\[UserName]\AppData\Roaming\npm\yarn.ps1,因为在此系统上禁止运行脚本。
导致此错误的原因是,PowerShell 执行策略,默认设置为Restricted
不加载配置文件或运行脚本。需变更设置为RemoteSigned
,变更过程为:
运行 Windows PowerShell(管理员),执行命令set-ExecutionPolicy RemoteSigned
更改 PowerShell 执行策略,过程中提示询问是否要更改执行策略?
,选择 A 或 Y 。如下图:
设置完毕,检验执行yarn config get registry
命令,可正常加载执行脚本。
使用get-ExecutionPolicy
命令,可查看当前 PowerShell 执行策略类型。
更多关于 Windows 计算机的 PowerShell 执行策略,可查如下链接:
(完)