安装完 npm install -g @vue/cli
出现以下错误
vue : 无法加载文件 C:\Users\xxx\AppData\Roaming\npm\vue.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go .microsoft
Google之,以下方法解决之:
- 以管理员身份运行PowerShell
- 执行:get-ExecutionPolicy,回复Restricted,表示状态是禁止的。
- 执行:set-ExecutionPolicy RemoteSigned
- 选择Y
注:一定要以管理员的身份运行PowerShell,不是cmd窗口!
via:998ip