问题描述
在装完yarn源追后 在项目中执行yarn install
命令发生以下地错误
yarn : 无法加载文件 D:\config\node\node_global\yarn.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ yarn install
+ ~~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
解决方法
用管理员打开PowerShell,输入命令·set-ExecutionPolicy RemoteSigned
set-ExecutionPolicy RemoteSigned
然后再vscode
终端执行yarn install
就执行成功了!!!