一、安装
错误信息详情
yarn : 无法将“yarn”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。
所在位置 行:1 字符: 1
+ yarn
+ ~~~~
+ CategoryInfo : ObjectNotFound: (yarn:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
-
出现这个问题是因为没有安装yarn,终端执行npm install --global yarn
npm install --global yarn
二、安装成功后运行
yarn : 无法加载文件 C:\Users\wang.yanyan\AppData\Roaming\npm\yarn.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ yarn
+ ~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
三、需要修改电脑配置
- 1、确认yarn是否安装
2、原因
是因为PowerShell执行策略,其默认是设置为 Restricted (受限),不加载配置文件或运行脚本,需要更改设置为 RemoteSigned(可运行本地创建或网上下载带数字证书签名的脚本)。(意思是电脑系统对这个脚本不信任,默认阻止这个脚本的运行,所以我们需要更改系统的权限)
3、解决方案
1)用管理员身份运行 Windows PowerShell ,执行 set-ExecutionPolicy RemoteSigned 命令更改 PowerShell 执行策略,过程中会提示询问是否要更改执行策略?选择 A 或 Y 。
然后yarn -v查看yarn版本
-
2)然后检查一下当前 PowerShell 执行策略类型,输入 get-ExecutionPolicy
3)这时再去运行 yarn -v 就可正常运行脚本了