nodejs 安装yarn不能执行安装脚本!!!
nodejs yarn 安装失败。
出现:
yarn : 无法加载文件 F:\Program Files\nodejs\node_global\yarn.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ yarn
+ ~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
允许系统运行脚本
1、以管理员身份运行powershell
2.执行:set-ExecutionPolicy RemoteSigned 选择y
3.查看策略:get-ExecutionPolicy 查看是否为RemoteSigned
4.再执行yarn即可安装操作。