正在阅读:
npm安装yarn报错(yarn.ps1,因为在此系统上禁止运行脚本)
npm安装yarn报错(yarn.ps1,因为在此系统上禁止运行脚本)
首先安装node.js,安装完成后,执行
npm install -g yarn
安装完成后,执行:
查看版本:yarn --version
如果此时,可能出现问题:
yarn.ps1,因为在此系统上禁止运行脚本
处理方法:
使用管理员运行powershell,然后运行命令:
set-ExecutionPolicy RemoteSigned
继续选择 Y 确认
执行完成之后,可以输入:
get-ExecutionPolicy
如出现 RemoteSigned
表示设置成功,接下去,执行 yarn --version 或者 yarn install 等yarn命令就没问题了。
该日志由 bemender 于 2021年06月01日 发表
转载请注明文本地址:https://www.bemhome.com/post/123.html