在cmd使用命令可以创建vue项目但是在vscode上面使用命令却不行
一、问题描述
在 cmd 中已确认vue、node、npm命令可以识别运行,但是在 vscode 编辑器中 vue 命令被禁止,详细报错为:
vue : 无法加载文件 D:\Software\nodejs\node_global\vue.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink
/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ vue create vue-demo
+ ~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
二、解决办法
搜到帖子发现原因是: 首次在计算机上启动 Windows PowerShell 时,现用执行策略很可能是 Restricted(默认设置)。Restricted 策略不允许任何脚本运行,防止执行不信任的脚本。
可以通过执行以下命令:
set executionpolicy remotesigned
接下来可以按照提示执行:
Set-ExecutionPolicy -scope CurrentUser
以上代码执行过程:
会出现提示,设置执行策略的值,这时候输入 remotesigned 就可以了
此时,在windows power shell 中以管理员运行命令 get-executionpolicy 可以看到执行策略
也可以直接在 Windows 的 power shell 执行设置命令 set-ExecutionPolicy RemoteSigned
若报错是下面的情况:
npm : 无法将“npm”项识别为 cmdlet、函数、脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,
然后再试一次。
所在位置 行:1 字符: 1
+ npm -v
+ ~~~
+ CategoryInfo : ObjectNotFound: (npm:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
应该就是环境变量没配置正确,可以去配下系统的环境变量