赞
踩
如图报错,
解决方案:
以管理员身份运行PowerShell
get-ExecutionPolicy
显示Restricted
set-ExecutionPolicy RemoteSigned
选择Y
get-ExecutionPolicy
显示RemoteSigned
OK~~
执行 vue --version
Windows PowerShell
版权所有 © Microsoft Corporation。保留所有权利。
PS C:\Windows\system32> get-ExecutionPolicy
Restricted
PS C:\Windows\system32> set-ExecutionPolicy RemoteSigned
执行策略更改
执行策略可帮助你防止执行不信任的脚本。更改执行策略可能会产生安全风险,如 https:/go.microsoft.com/fwlink/?LinkID=135170
中的 about_Execution_Policies 帮助主题所述。是否要更改执行策略?
[Y] 是(Y) [A] 全是(A) [N] 否(N) [L] 全否(L) [S] 暂停(S) [?] 帮助 (默认值为“N”): Y
PS C:\Windows\system32> get-ExecutionPolicy
RemoteSigned
PS C:\Windows\system32>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。