纱线命令无法以常规方式执行
Yarn commands can't be executed in the regular way
当执行 yarn 命令时,它给出了一个安全错误,作为未授权访问。
yarn : File %FILEPATH%\yarn.ps1 cannot be loaded because running scripts is disabled on this
system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ yarn start
+ ~~~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
但是可以使用下面显示的命令绕过它。
powershell -ExecutionPolicy Bypass -File '%FILEPATH%\yarn.ps1' yarn start
所有 npm 命令都运行良好,只有在执行 yarn 命令时才会出现错误。 windows 10 操作系统上的命令是 运行。
有没有办法以常规方式执行纱线命令? (只执行命令 yarn start)
这似乎是 PowerShell 中的一个错误
你有没有在你的系统上安装节点?
尝试卸载 yarn
并尝试使用 installer
安装它
This will give you a .msi file that when run will walk you through installing Yarn on Windows.
If you use the installer you will first need to install Node.js.
如果它不起作用,您可以使用此 link 中描述的命令
link
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted
当执行 yarn 命令时,它给出了一个安全错误,作为未授权访问。
yarn : File %FILEPATH%\yarn.ps1 cannot be loaded because running scripts is disabled on this
system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.
At line:1 char:1
+ yarn start
+ ~~~~
+ CategoryInfo : SecurityError: (:) [], PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
但是可以使用下面显示的命令绕过它。
powershell -ExecutionPolicy Bypass -File '%FILEPATH%\yarn.ps1' yarn start
所有 npm 命令都运行良好,只有在执行 yarn 命令时才会出现错误。 windows 10 操作系统上的命令是 运行。
有没有办法以常规方式执行纱线命令? (只执行命令 yarn start)
这似乎是 PowerShell 中的一个错误
你有没有在你的系统上安装节点?
尝试卸载 yarn
并尝试使用 installer
安装它This will give you a .msi file that when run will walk you through installing Yarn on Windows.
If you use the installer you will first need to install Node.js.
如果它不起作用,您可以使用此 link 中描述的命令 link
Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted