无法加载文件 C:\Users\ThinkPad\AppData\Roaming\npm\tsc.ps1

问题展示

无法加载文件 C:\Users\ThinkPad\AppData\Roaming\npm\tsc.ps1,因为在此系统上禁止运
行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_E
xecution_Policies。
所在位置 行:1 字符: 1
cnpm run dev
CategoryInfo : SecurityError: () [],PSSecurityException
FullyQualifiedErrorId : UnauthorizedAccess
————————————————

如果你也是在window上遇到这个问题,解决方法如下:

方法一

dos 操作

  1. win + s 键 输入 powershell
  2. 使用set-ExecutionPolicy RemoteSigned命令将计算机上的执行策略更改为 RemoteSigned,输入Y确定
  3. 查看计算机执行策略get-ExecutionPolicy
  4. 执行命令:Set-ExecutionPolicy RemoteSigned -Scope Process
  5. 再次输入Y问题解决

方法二

vscode 操作

  1. get-ExecutionPolicy
  2. Set-ExecutionPolicy RemoteSigned -Scope Process
  3. 完成

有问题欢迎关注留言:或者加V chinaynlmq
补充说明:
window系统下面 powershell 和 cmd 是两个不同的命令交互,想了解的可以查阅相关资料
powerShell 是专为系统管理员设计的

你可能感兴趣的:(前端错误信息)